Lines Matching refs:obj

100     // default phone as the first phone registered, which is PhoneBase obj
186 * Get the corresponding PhoneBase obj
189 * @return the corresponding PhoneBase obj in Phone if Phone
190 * is a PhoneProxy obj
191 * or the Phone itself if Phone is not a PhoneProxy obj
201 * Check if two phones refer to the same PhoneBase obj
208 * foregroundCall.getPhone() returns GSMPhone obj. On the other hand,
209 * PhoneFactory.getDefaultPhone() returns PhoneProxy obj, which has a class
217 * @param p1 is the first Phone obj
218 * @param p2 is the second Phone obj
1084 * <ul><li>Message.obj will be an AsyncResult</li>
1085 * <li>AsyncResult.userObj = obj</li>
1089 public void registerForDisconnect(Handler h, int what, Object obj) {
1090 mDisconnectRegistrants.addUnique(h, what, obj);
1106 * Resulting events will have an AsyncResult in <code>Message.obj</code>.
1107 * AsyncResult.userData will be set to the obj argument here.
1110 public void registerForPreciseCallStateChanged(Handler h, int what, Object obj){
1111 mPreciseCallStateRegistrants.addUnique(h, what, obj);
1126 public void registerForUnknownConnection(Handler h, int what, Object obj){
1127 mUnknownConnectionRegistrants.addUnique(h, what, obj);
1142 * Message.obj will be an AsyncResult
1143 * AsyncResult.userObj = obj
1150 public void registerForNewRingingConnection(Handler h, int what, Object obj){
1151 mNewRingingConnectionRegistrants.addUnique(h, what, obj);
1167 * Message.obj will be an AsyncResult
1168 * AsyncResult.userObj = obj
1171 public void registerForIncomingRing(Handler h, int what, Object obj){
1172 mIncomingRingRegistrants.addUnique(h, what, obj);
1188 * Message.obj will be an AsyncResult
1189 * AsyncResult.userObj = obj
1193 public void registerForRingbackTone(Handler h, int what, Object obj){
1194 mRingbackToneRegistrants.addUnique(h, what, obj);
1209 public void registerForResendIncallMute(Handler h, int what, Object obj){
1210 mResendIncallMuteRegistrants.addUnique(h, what, obj);
1227 * The returned <code>Message.obj</code> will contain an AsyncResult.
1229 * <code>obj.result</code> will be an "MmiCode" object.
1231 public void registerForMmiInitiate(Handler h, int what, Object obj){
1232 mMmiInitiateRegistrants.addUnique(h, what, obj);
1248 * <code>Message.obj</code> will contain an AsyncResult.
1249 * <code>obj.result</code> will be an "MmiCode" object
1251 public void registerForMmiComplete(Handler h, int what, Object obj){
1252 mMmiCompleteRegistrants.addUnique(h, what, obj);
1267 * @param obj placed in Message.obj
1269 public void registerForEcmTimerReset(Handler h, int what, Object obj){
1270 mEcmTimerResetRegistrants.addUnique(h, what, obj);
1283 * Message.obj will contain an AsyncResult.
1286 public void registerForServiceStateChanged(Handler h, int what, Object obj){
1287 mServiceStateChangedRegistrants.addUnique(h, what, obj);
1300 * Message.obj will contain an AsyncResult.
1304 * @param obj User object.
1306 public void registerForSuppServiceFailed(Handler h, int what, Object obj){
1307 mSuppServiceFailedRegistrants.addUnique(h, what, obj);
1325 * @param obj User object.
1327 public void registerForInCallVoicePrivacyOn(Handler h, int what, Object obj){
1328 mInCallVoicePrivacyOnRegistrants.addUnique(h, what, obj);
1345 * @param obj User object.
1347 public void registerForInCallVoicePrivacyOff(Handler h, int what, Object obj){
1348 mInCallVoicePrivacyOffRegistrants.addUnique(h, what, obj);
1365 * @param obj User object.
1367 public void registerForCallWaiting(Handler h, int what, Object obj){
1368 mCallWaitingRegistrants.addUnique(h, what, obj);
1382 * Message.obj will contain an AsyncResult.
1387 * @param obj User object.
1390 public void registerForSignalInfo(Handler h, int what, Object obj){
1391 mSignalInfoRegistrants.addUnique(h, what, obj);
1406 * Message.obj will contain an AsyncResult.
1411 * @param obj User object.
1413 public void registerForDisplayInfo(Handler h, int what, Object obj){
1414 mDisplayInfoRegistrants.addUnique(h, what, obj);
1432 * @param obj User object.
1434 public void registerForCdmaOtaStatusChange(Handler h, int what, Object obj){
1435 mCdmaOtaStatusChangeRegistrants.addUnique(h, what, obj);
1450 * @param obj placed in Message.obj
1452 public void registerForSubscriptionInfoReady(Handler h, int what, Object obj){
1453 mSubscriptionInfoReadyRegistrants.addUnique(h, what, obj);
1469 * The <code>obj</code> field of these Message's will be instances of
1470 * <code>AsyncResult</code>. <code>Message.obj.result</code> will be
1496 public void registerForPostDialCharacter(Handler h, int what, Object obj){
1497 mPostDialCharacterRegistrants.addUnique(h, what, obj);
1746 mDisconnectRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1750 mPreciseCallStateRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1755 Connection c = (Connection) ((AsyncResult) msg.obj).result;
1763 mNewRingingConnectionRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1768 mUnknownConnectionRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1774 mIncomingRingRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1779 mRingbackToneRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1783 mInCallVoicePrivacyOnRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1787 mInCallVoicePrivacyOffRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1791 mCallWaitingRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1795 mDisplayInfoRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1799 mSignalInfoRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1803 mCdmaOtaStatusChangeRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1807 mResendIncallMuteRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1811 mMmiInitiateRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1815 mMmiCompleteRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1819 mEcmTimerResetRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1823 mSubscriptionInfoReadyRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1827 mSuppServiceFailedRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1831 mServiceStateChangedRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1840 notifyMsg.obj = msg.obj;