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/
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 …]
DTelephonyTester.java145 ImsPhone imsPhone = (ImsPhone) mPhone; in handleTestConferenceEventPackage() local
146 if (imsPhone == null) { in handleTestConferenceEventPackage()
150 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in handleTestConferenceEventPackage()
184 ImsPhone imsPhone = (ImsPhone) mPhone; in handleTestDialogEventPackageIntent() local
185 if (imsPhone == null) { in handleTestDialogEventPackageIntent()
188 ImsExternalCallTracker externalCallTracker = imsPhone.getExternalCallTracker(); in handleTestDialogEventPackageIntent()
DTelephonyComponentFactory.java117 public ImsPhoneCallTracker makeImsPhoneCallTracker(ImsPhone imsPhone) { in makeImsPhoneCallTracker() argument
118 return new ImsPhoneCallTracker(imsPhone); in makeImsPhoneCallTracker()
121 public ImsExternalCallTracker makeImsExternalCallTracker(ImsPhone imsPhone, in makeImsExternalCallTracker() argument
124 return new ImsExternalCallTracker(imsPhone, callPuller); in makeImsExternalCallTracker()
DPhone.java647 Phone imsPhone = mImsPhone; in handleSrvccStateChanged() local
654 if (imsPhone != null) { in handleSrvccStateChanged()
655 conn = imsPhone.getHandoverConnection(); in handleSrvccStateChanged()
656 migrateFrom(imsPhone); in handleSrvccStateChanged()
663 if (imsPhone != null) { in handleSrvccStateChanged()
664 imsPhone.notifySrvccState(srvccState); in handleSrvccStateChanged()
2862 Phone imsPhone = mImsPhone; in getVoicePhoneServiceState() local
2863 if (imsPhone != null in getVoicePhoneServiceState()
2864 && imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) { in getVoicePhoneServiceState()
2936 Phone imsPhone = mImsPhone; in isImsRegistered() local
[all …]
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()
DGsmCdmaCallTracker.java693 Phone imsPhone = mPhone.getImsPhone(); in updatePhoneState() local
694 if ( mState == PhoneConstants.State.OFFHOOK && (imsPhone != null)){ in updatePhoneState()
695 imsPhone.callEndCleanupHandOverCallIfAny(); in updatePhoneState()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DPhoneMock.java1028 public static void checkWfcWifiOnlyModeBeforeDial(Phone imsPhone, Context context) { in checkWfcWifiOnlyModeBeforeDial() argument