Home
last modified time | relevance | path

Searched refs:getForegroundCall (Results 1 – 15 of 15) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsNrSaModeHandler.java172 + mPhone.getForegroundCall().getState() + ", background state = " in onPreciseCallStateChanged()
337 if ((mPhone.getForegroundCall().getState() == Call.State.ACTIVE) in isImsCallJustEstablished()
348 if (isImsCallOngoing() && (!mPhone.getForegroundCall().getState().isAlive() in isImsCallJustTerminated()
DImsPhoneBase.java211 ImsPhoneCall foregroundCall = (ImsPhoneCall) getForegroundCall(); in notifyPreciseCallStateToNotifier()
278 Rlog.v(LOG_TAG, "canDial(): foregndCall: " + getForegroundCall().getState()); in canDial()
281 && (!getForegroundCall().getState().isAlive() in canDial()
291 Call.State foregroundCallState = getForegroundCall().getState(); in isInCall()
570 } else if (getForegroundCall().isIdle() in updatePhoneState()
DImsPhone.java661 getForegroundCall() { in getForegroundCall() method in ImsPhone
778 ImsPhoneCall call = getForegroundCall(); in handleCallWaitingIncallSupplementaryService()
823 if (getForegroundCall().getState() != ImsPhoneCall.State.IDLE) { in handleCallHoldIncallSupplementaryService()
830 } else if (getForegroundCall().getState() != ImsPhoneCall.State.IDLE) { in handleCallHoldIncallSupplementaryService()
929 ImsPhoneCall.State foregroundCallState = getForegroundCall().getState(); in isInCall()
1622 connList.addAll(getForegroundCall().getConnections()); in getHandoverConnection()
2757 return (getForegroundCall().getState() != Call.State.IDLE || in hasAliveCall()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/data/
DPhoneSwitcherTest.java1813 doReturn(testImsPhoneCall).when(testImsPhone).getForegroundCall(); in testReceivingImsRegistrationTech()
1911 doReturn(mInactiveCall).when(mPhone).getForegroundCall(); in setAllPhonesInactive()
1914 doReturn(mInactiveCall).when(mPhone2).getForegroundCall(); in setAllPhonesInactive()
1917 doReturn(mInactiveCall).when(mImsPhone).getForegroundCall(); in setAllPhonesInactive()
1923 doReturn(mActiveCall).when(phone).getForegroundCall(); in notifyPhoneAsInCall()
1929 doReturn(mDialCall).when(phone).getForegroundCall(); in notifyPhoneAsInDial()
1935 doReturn(mAlertingCall).when(phone).getForegroundCall(); in notifyPhoneAsAlerting()
1941 doReturn(mIncomingCall).when(phone).getForegroundCall(); in notifyPhoneAsInIncomingCall()
1953 doReturn(mInactiveCall).when(phone).getForegroundCall(); in notifyPhoneAsInactive()
1993 doReturn(mInactiveCall).when(phone).getForegroundCall(); in notifyEcbmStart()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DTelephonyTester.java331 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in handleTestConferenceEventPackage()
621 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in getImsCall()
655 mPhone.getForegroundCall().getConnections() in testChangeNumber()
DCallManager.java370 mForegroundCalls.add(phone.getForegroundCall()); in registerPhone()
398 mForegroundCalls.remove(phone.getForegroundCall()); in unregisterPhone()
1727 : mDefaultPhone.getForegroundCall(); in getActiveFgCall()
1739 : phone.getForegroundCall(); in getActiveFgCall()
DDefaultPhoneNotifier.java178 Call foregroundCall = sender.getForegroundCall(); in notifyPreciseCallState()
DPhoneInternalInterface.java440 Call getForegroundCall(); in getForegroundCall() method
DGsmCdmaPhone.java1121 public GsmCdmaCall getForegroundCall() { in getForegroundCall() method in GsmCdmaPhone
1238 GsmCdmaCall call = getForegroundCall(); in handleCallWaitingIncallSupplementaryService()
1275 GsmCdmaCall call = getForegroundCall(); in handleCallHoldIncallSupplementaryService()
1399 GsmCdmaCall.State foregroundCallState = getForegroundCall().getState(); in isInCall()
DPhone.java3094 isPresent = isVideoCallOrConference(mImsPhone.getForegroundCall()) || in isImsVideoCallOrConferencePresent()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DDefaultPhoneNotifierTest.java229 doReturn(mForeGroundCall).when(mPhone).getForegroundCall(); in testNotifyPreciseCallState()
307 doReturn(mImsForeGroundCall).when(mImsPhone).getForegroundCall(); in testNotifyPreciseCallStateImsCallInfo()
DCallManagerTest.java69 doReturn(mFgCall).when(mPhone).getForegroundCall(); in setUp()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsNrSaModeHandlerTest.java106 doReturn(mForegroundCall).when(mImsPhone).getForegroundCall(); in setUp()
DImsPhoneTest.java396 assertEquals(mForegroundCall, mImsPhoneUT.getForegroundCall()); in testGettersAndPassThroughs()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/
DPhoneSwitcher.java1793 || (!phone.getForegroundCall().isIdle() in isPhoneInVoiceCall()
1794 && phone.getForegroundCall().getState() != Call.State.DIALING); in isPhoneInVoiceCall()