Home
last modified time | relevance | path

Searched refs:imsPhone (Results 1 – 7 of 7) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DTelephonyTester.java213 ImsPhone imsPhone = (ImsPhone) mPhone; in handleSuppServiceFailedIntent() local
214 if (imsPhone == null) { in handleSuppServiceFailedIntent()
218 imsPhone.notifySuppServiceFailed(PhoneInternalInterface.SuppService.values()[code]); in handleSuppServiceFailedIntent()
223 ImsPhone imsPhone = (ImsPhone) mPhone; in handleHandoverFailedIntent() local
224 if (imsPhone == null) { in handleHandoverFailedIntent()
228 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in handleHandoverFailedIntent()
252 ImsPhone imsPhone = (ImsPhone) mPhone; in handleTestConferenceEventPackage() local
253 if (imsPhone == null) { in handleTestConferenceEventPackage()
257 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in handleTestConferenceEventPackage()
291 ImsPhone imsPhone = (ImsPhone) mPhone; in handleTestDialogEventPackageIntent() local
[all …]
DGsmCdmaPhone.java705 Phone imsPhone = mImsPhone; in acceptCall() local
706 if ( imsPhone != null && imsPhone.getRingingCall().isRinging() ) { in acceptCall()
707 imsPhone.acceptCall(videoState); in acceptCall()
829 Phone imsPhone = mImsPhone; in getRingingCall() local
837 if ( imsPhone != null && imsPhone.getRingingCall().isRinging()) { in getRingingCall()
838 return imsPhone.getRingingCall(); in getRingingCall()
990 Phone imsPhone = mImsPhone; in handleInCallMmiCommands() local
991 if (imsPhone != null in handleInCallMmiCommands()
992 && imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) { in handleInCallMmiCommands()
993 return imsPhone.handleInCallMmiCommands(dialString); in handleInCallMmiCommands()
[all …]
DTelephonyComponentFactory.java146 public ImsPhoneCallTracker makeImsPhoneCallTracker(ImsPhone imsPhone) { in makeImsPhoneCallTracker() argument
147 return new ImsPhoneCallTracker(imsPhone); in makeImsPhoneCallTracker()
150 public ImsExternalCallTracker makeImsExternalCallTracker(ImsPhone imsPhone) { in makeImsExternalCallTracker() argument
152 return new ImsExternalCallTracker(imsPhone); in makeImsExternalCallTracker()
DPhone.java734 Phone imsPhone = mImsPhone; in handleSrvccStateChanged() local
741 if (imsPhone != null) { in handleSrvccStateChanged()
742 conn = imsPhone.getHandoverConnection(); in handleSrvccStateChanged()
743 migrateFrom(imsPhone); in handleSrvccStateChanged()
750 if (imsPhone != null) { in handleSrvccStateChanged()
751 imsPhone.notifySrvccState(srvccState); in handleSrvccStateChanged()
3150 Phone imsPhone = mImsPhone; in getVoicePhoneServiceState() local
3151 if (imsPhone != null in getVoicePhoneServiceState()
3152 && imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) { in getVoicePhoneServiceState()
3224 Phone imsPhone = mImsPhone; in isImsRegistered() local
[all …]
DGsmCdmaCallTracker.java718 Phone imsPhone = mPhone.getImsPhone(); in updatePhoneState() local
719 if ( mState == PhoneConstants.State.OFFHOOK && (imsPhone != null)){ in updatePhoneState()
720 imsPhone.callEndCleanupHandOverCallIfAny(); in updatePhoneState()
1100 Phone imsPhone = mPhone.getImsPhone(); in handlePollCalls() local
1101 if (imsPhone != null) { in handlePollCalls()
1102 imsPhone.callEndCleanupHandOverCallIfAny(); in handlePollCalls()
DCallManager.java401 Phone imsPhone = phone.getImsPhone(); in unregisterPhone() local
402 if (imsPhone != null) { in unregisterPhone()
403 unregisterPhone(imsPhone); in unregisterPhone()
951 Phone imsPhone = phone.getImsPhone(); in dial() local
953 && (imsPhone == null || imsPhone != activePhone)) { in dial()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DPhoneMock.java1040 public static void checkWfcWifiOnlyModeBeforeDial(Phone imsPhone, Context context) { in checkWfcWifiOnlyModeBeforeDial() argument