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.java159 ImsPhone imsPhone = (ImsPhone) mPhone; in handleHandoverFailedIntent() local
160 if (imsPhone == null) { in handleHandoverFailedIntent()
164 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in handleHandoverFailedIntent()
188 ImsPhone imsPhone = (ImsPhone) mPhone; in handleTestConferenceEventPackage() local
189 if (imsPhone == null) { in handleTestConferenceEventPackage()
193 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in handleTestConferenceEventPackage()
227 ImsPhone imsPhone = (ImsPhone) mPhone; in handleTestDialogEventPackageIntent() local
228 if (imsPhone == null) { in handleTestDialogEventPackageIntent()
231 ImsExternalCallTracker externalCallTracker = imsPhone.getExternalCallTracker(); in handleTestDialogEventPackageIntent()
DGsmCdmaPhone.java713 Phone imsPhone = mImsPhone; in acceptCall() local
714 if ( imsPhone != null && imsPhone.getRingingCall().isRinging() ) { in acceptCall()
715 imsPhone.acceptCall(videoState); in acceptCall()
837 Phone imsPhone = mImsPhone; in getRingingCall() local
845 if ( imsPhone != null && imsPhone.getRingingCall().isRinging()) { in getRingingCall()
846 return imsPhone.getRingingCall(); in getRingingCall()
998 Phone imsPhone = mImsPhone; in handleInCallMmiCommands() local
999 if (imsPhone != null in handleInCallMmiCommands()
1000 && imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) { in handleInCallMmiCommands()
1001 return imsPhone.handleInCallMmiCommands(dialString); in handleInCallMmiCommands()
[all …]
DTelephonyComponentFactory.java127 public ImsPhoneCallTracker makeImsPhoneCallTracker(ImsPhone imsPhone) { in makeImsPhoneCallTracker() argument
128 return new ImsPhoneCallTracker(imsPhone); in makeImsPhoneCallTracker()
131 public ImsExternalCallTracker makeImsExternalCallTracker(ImsPhone imsPhone) { in makeImsExternalCallTracker() argument
133 return new ImsExternalCallTracker(imsPhone); in makeImsExternalCallTracker()
DPhone.java689 Phone imsPhone = mImsPhone; in handleSrvccStateChanged() local
696 if (imsPhone != null) { in handleSrvccStateChanged()
697 conn = imsPhone.getHandoverConnection(); in handleSrvccStateChanged()
698 migrateFrom(imsPhone); in handleSrvccStateChanged()
705 if (imsPhone != null) { in handleSrvccStateChanged()
706 imsPhone.notifySrvccState(srvccState); in handleSrvccStateChanged()
3032 Phone imsPhone = mImsPhone; in getVoicePhoneServiceState() local
3033 if (imsPhone != null in getVoicePhoneServiceState()
3034 && imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) { in getVoicePhoneServiceState()
3106 Phone imsPhone = mImsPhone; in isImsRegistered() local
[all …]
DGsmCdmaCallTracker.java712 Phone imsPhone = mPhone.getImsPhone(); in updatePhoneState() local
713 if ( mState == PhoneConstants.State.OFFHOOK && (imsPhone != null)){ in updatePhoneState()
714 imsPhone.callEndCleanupHandOverCallIfAny(); in updatePhoneState()
1094 Phone imsPhone = mPhone.getImsPhone(); in handlePollCalls() local
1095 if (imsPhone != null) { in handlePollCalls()
1096 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.java1044 public static void checkWfcWifiOnlyModeBeforeDial(Phone imsPhone, Context context) { in checkWfcWifiOnlyModeBeforeDial() argument