Lines Matching defs:obj

100     // default phone as the first phone registered, which is PhoneBase obj
184 * Get the corresponding PhoneBase obj
187 * @return the corresponding PhoneBase obj in Phone if Phone
188 * is a PhoneProxy obj
189 * or the Phone itself if Phone is not a PhoneProxy obj
199 * Check if two phones refer to the same PhoneBase obj
206 * foregroundCall.getPhone() returns GSMPhone obj. On the other hand,
207 * PhoneFactory.getDefaultPhone() returns PhoneProxy obj, which has a class
215 * @param p1 is the first Phone obj
216 * @param p2 is the second Phone obj
1056 * <ul><li>Message.obj will be an AsyncResult</li>
1057 * <li>AsyncResult.userObj = obj</li>
1061 public void registerForDisconnect(Handler h, int what, Object obj) {
1062 mDisconnectRegistrants.addUnique(h, what, obj);
1078 * Resulting events will have an AsyncResult in <code>Message.obj</code>.
1079 * AsyncResult.userData will be set to the obj argument here.
1082 public void registerForPreciseCallStateChanged(Handler h, int what, Object obj){
1083 mPreciseCallStateRegistrants.addUnique(h, what, obj);
1098 public void registerForUnknownConnection(Handler h, int what, Object obj){
1099 mUnknownConnectionRegistrants.addUnique(h, what, obj);
1114 * Message.obj will be an AsyncResult
1115 * AsyncResult.userObj = obj
1122 public void registerForNewRingingConnection(Handler h, int what, Object obj){
1123 mNewRingingConnectionRegistrants.addUnique(h, what, obj);
1139 * Message.obj will be an AsyncResult
1140 * AsyncResult.userObj = obj
1143 public void registerForIncomingRing(Handler h, int what, Object obj){
1144 mIncomingRingRegistrants.addUnique(h, what, obj);
1160 * Message.obj will be an AsyncResult
1161 * AsyncResult.userObj = obj
1165 public void registerForRingbackTone(Handler h, int what, Object obj){
1166 mRingbackToneRegistrants.addUnique(h, what, obj);
1181 public void registerForResendIncallMute(Handler h, int what, Object obj){
1182 mResendIncallMuteRegistrants.addUnique(h, what, obj);
1199 * The returned <code>Message.obj</code> will contain an AsyncResult.
1201 * <code>obj.result</code> will be an "MmiCode" object.
1203 public void registerForMmiInitiate(Handler h, int what, Object obj){
1204 mMmiInitiateRegistrants.addUnique(h, what, obj);
1220 * <code>Message.obj</code> will contain an AsyncResult.
1221 * <code>obj.result</code> will be an "MmiCode" object
1223 public void registerForMmiComplete(Handler h, int what, Object obj){
1224 mMmiCompleteRegistrants.addUnique(h, what, obj);
1239 * @param obj placed in Message.obj
1241 public void registerForEcmTimerReset(Handler h, int what, Object obj){
1242 mEcmTimerResetRegistrants.addUnique(h, what, obj);
1255 * Message.obj will contain an AsyncResult.
1258 public void registerForServiceStateChanged(Handler h, int what, Object obj){
1259 mServiceStateChangedRegistrants.addUnique(h, what, obj);
1272 * Message.obj will contain an AsyncResult.
1276 * @param obj User object.
1278 public void registerForSuppServiceFailed(Handler h, int what, Object obj){
1279 mSuppServiceFailedRegistrants.addUnique(h, what, obj);
1297 * @param obj User object.
1299 public void registerForInCallVoicePrivacyOn(Handler h, int what, Object obj){
1300 mInCallVoicePrivacyOnRegistrants.addUnique(h, what, obj);
1317 * @param obj User object.
1319 public void registerForInCallVoicePrivacyOff(Handler h, int what, Object obj){
1320 mInCallVoicePrivacyOffRegistrants.addUnique(h, what, obj);
1337 * @param obj User object.
1339 public void registerForCallWaiting(Handler h, int what, Object obj){
1340 mCallWaitingRegistrants.addUnique(h, what, obj);
1354 * Message.obj will contain an AsyncResult.
1359 * @param obj User object.
1362 public void registerForSignalInfo(Handler h, int what, Object obj){
1363 mSignalInfoRegistrants.addUnique(h, what, obj);
1378 * Message.obj will contain an AsyncResult.
1383 * @param obj User object.
1385 public void registerForDisplayInfo(Handler h, int what, Object obj){
1386 mDisplayInfoRegistrants.addUnique(h, what, obj);
1404 * @param obj User object.
1406 public void registerForCdmaOtaStatusChange(Handler h, int what, Object obj){
1407 mCdmaOtaStatusChangeRegistrants.addUnique(h, what, obj);
1422 * @param obj placed in Message.obj
1424 public void registerForSubscriptionInfoReady(Handler h, int what, Object obj){
1425 mSubscriptionInfoReadyRegistrants.addUnique(h, what, obj);
1441 * The <code>obj</code> field of these Message's will be instances of
1442 * <code>AsyncResult</code>. <code>Message.obj.result</code> will be
1468 public void registerForPostDialCharacter(Handler h, int what, Object obj){
1469 mPostDialCharacterRegistrants.addUnique(h, what, obj);
1718 mDisconnectRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1722 mPreciseCallStateRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1727 Connection c = (Connection) ((AsyncResult) msg.obj).result;
1735 mNewRingingConnectionRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1740 mUnknownConnectionRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1746 mIncomingRingRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1751 mRingbackToneRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1755 mInCallVoicePrivacyOnRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1759 mInCallVoicePrivacyOffRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1763 mCallWaitingRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1767 mDisplayInfoRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1771 mSignalInfoRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1775 mCdmaOtaStatusChangeRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1779 mResendIncallMuteRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1783 mMmiInitiateRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1787 mMmiCompleteRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1791 mEcmTimerResetRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1795 mSubscriptionInfoReadyRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1799 mSuppServiceFailedRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1803 mServiceStateChangedRegistrants.notifyRegistrants((AsyncResult) msg.obj);
1812 notifyMsg.obj = msg.obj;