Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DTelephonyTester.java267 ImsPhone imsPhone = (ImsPhone) mPhone; in handleSuppServiceFailedIntent() local
268 if (imsPhone == null) { in handleSuppServiceFailedIntent()
272 imsPhone.notifySuppServiceFailed(PhoneInternalInterface.SuppService.values()[code]); in handleSuppServiceFailedIntent()
297 ImsPhone imsPhone = (ImsPhone) mPhone; in handleTestConferenceEventPackage() local
298 if (imsPhone == null) { in handleTestConferenceEventPackage()
302 ImsPhoneCallTracker tracker = (ImsPhoneCallTracker) imsPhone.getCallTracker(); in handleTestConferenceEventPackage()
322 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in handleTestConferenceEventPackage()
342 ImsPhone imsPhone = (ImsPhone) mPhone; in handleTestDialogEventPackageIntent() local
343 if (imsPhone == null) { in handleTestDialogEventPackageIntent()
346 ImsExternalCallTracker externalCallTracker = imsPhone.getExternalCallTracker(); in handleTestDialogEventPackageIntent()
[all …]
DGsmCdmaPhone.java906 Phone imsPhone = mImsPhone; in acceptCall() local
907 if ( imsPhone != null && imsPhone.getRingingCall().isRinging() ) { in acceptCall()
908 imsPhone.acceptCall(videoState); in acceptCall()
1038 Phone imsPhone = mImsPhone; in getRingingCall() local
1046 if ( imsPhone != null && imsPhone.getRingingCall().isRinging()) { in getRingingCall()
1047 return imsPhone.getRingingCall(); in getRingingCall()
1233 Phone imsPhone = mImsPhone; in handleInCallMmiCommands() local
1234 if (imsPhone != null in handleInCallMmiCommands()
1235 && imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) { in handleInCallMmiCommands()
1236 return imsPhone.handleInCallMmiCommands(dialString); in handleInCallMmiCommands()
[all …]
DPhone.java831 Phone imsPhone = mImsPhone; in handleSrvccStateChanged() local
838 if (imsPhone != null) { in handleSrvccStateChanged()
839 conn = imsPhone.getHandoverConnection(); in handleSrvccStateChanged()
840 migrateFrom(imsPhone); in handleSrvccStateChanged()
847 if (imsPhone != null) { in handleSrvccStateChanged()
848 imsPhone.notifySrvccState(srvccState); in handleSrvccStateChanged()
4092 Phone imsPhone = mImsPhone; in getVoicePhoneServiceState() local
4093 if (imsPhone != null in getVoicePhoneServiceState()
4094 && imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) { in getVoicePhoneServiceState()
4166 Phone imsPhone = mImsPhone; in isImsRegistered() local
[all …]
DTelephonyComponentFactory.java381 public ImsPhoneCallTracker makeImsPhoneCallTracker(ImsPhone imsPhone) {
382 return new ImsPhoneCallTracker(imsPhone, ImsManager::getConnector);
385 public ImsExternalCallTracker makeImsExternalCallTracker(ImsPhone imsPhone) {
387 return new ImsExternalCallTracker(imsPhone);
DCallManager.java390 Phone imsPhone = phone.getImsPhone(); in unregisterPhone() local
391 if (imsPhone != null) { in unregisterPhone()
392 unregisterPhone(imsPhone); in unregisterPhone()
805 Phone imsPhone = phone.getImsPhone(); in dial() local
807 && (imsPhone == null || imsPhone != activePhone)) { in dial()
DGsmCdmaCallTracker.java801 Phone imsPhone = mPhone.getImsPhone(); in updatePhoneState() local
802 if ( mState == PhoneConstants.State.OFFHOOK && (imsPhone != null)){ in updatePhoneState()
803 imsPhone.callEndCleanupHandOverCallIfAny(); in updatePhoneState()
1196 Phone imsPhone = mPhone.getImsPhone(); in handlePollCalls() local
1197 if (imsPhone != null) { in handlePollCalls()
1198 imsPhone.callEndCleanupHandOverCallIfAny(); in handlePollCalls()
DPhoneSwitcher.java853 Phone imsPhone = p.getImsPhone(); in isInEmergencyCallbackMode()
854 if (imsPhone != null && imsPhone.isInEcm()) { in isInEmergencyCallbackMode()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DMetricsCollector.java339 ImsPhone imsPhone = (ImsPhone) phone.getImsPhone(); in pullImsRegistrationStats() local
340 if (imsPhone != null) { in pullImsRegistrationStats()
341 imsPhone.getImsStats().conclude(); in pullImsRegistrationStats()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/metrics/
DImsStatsTest.java85 TestableImsStats(ImsPhone imsPhone) { in TestableImsStats() argument
86 super(imsPhone); in TestableImsStats()