Home
last modified time | relevance | path

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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
DGSMPhoneTest.java.broken146 assertEquals(0, mGSMPhone.getForegroundCall().getConnections().size());
150 assertEquals(Call.State.IDLE, mGSMPhone.getForegroundCall().getState());
153 assertEquals(0, mGSMPhone.getForegroundCall().getEarliestCreateTime());
154 assertEquals(0, mGSMPhone.getForegroundCall().getEarliestConnectTime());
169 assertEquals(Call.State.DIALING, mGSMPhone.getForegroundCall().getState());
170 assertTrue(mGSMPhone.getForegroundCall().isDialingOrAlerting());
174 } while (mGSMPhone.getForegroundCall().getConnections().size() == 0);*/
177 assertEquals(1, mGSMPhone.getForegroundCall().getConnections().size());
182 mGSMPhone.getForegroundCall().getState());
185 assertTrue(mGSMPhone.getForegroundCall().getEarliestCreateTime() > 0);
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipPhoneBase.java63 public abstract Call getForegroundCall(); in getForegroundCall() method in SipPhoneBase
217 Rlog.v(LOG_TAG, "canDial(): foregndCall: " + getForegroundCall().getState()); in canDial()
220 && (!getForegroundCall().getState().isAlive() in canDial()
230 Call.State foregroundCallState = getForegroundCall().getState(); in isInCall()
517 } else if (getForegroundCall().isIdle() in updatePhoneState()
DSipPhone.java372 public Call getForegroundCall() { in getForegroundCall() method in SipPhone
982 : (SipCall) getForegroundCall(); in separate()
1003 call = (SipCall) getForegroundCall(); in separate()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneBase.java255 Rlog.v(LOG_TAG, "canDial(): foregndCall: " + getForegroundCall().getState()); in canDial()
258 && (!getForegroundCall().getState().isAlive() in canDial()
268 Call.State foregroundCallState = getForegroundCall().getState(); in isInCall()
541 } else if (getForegroundCall().isIdle() in updatePhoneState()
DImsPhone.java331 getForegroundCall() { in getForegroundCall() method in ImsPhone
419 ImsPhoneCall call = getForegroundCall(); in handleCallWaitingIncallSupplementaryService()
553 ImsPhoneCall.State foregroundCallState = getForegroundCall().getState(); in isInCall()
1122 connList.addAll(getForegroundCall().mConnections); in getHandoverConnection()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DTelephonyTester.java164 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in handleHandoverFailedIntent()
193 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in handleTestConferenceEventPackage()
DCallManager.java382 mForegroundCalls.add(phone.getForegroundCall()); in registerPhone()
409 mForegroundCalls.remove(phone.getForegroundCall()); in unregisterPhone()
1867 : mDefaultPhone.getForegroundCall(); in getActiveFgCall()
1878 : phone.getForegroundCall(); in getActiveFgCall()
2402 call = phone.getForegroundCall(); in toString()
DPhoneInternalInterface.java359 Call getForegroundCall(); in getForegroundCall() method
DDefaultPhoneNotifier.java250 Call foregroundCall = sender.getForegroundCall(); in notifyPreciseCallState()
DGsmCdmaPhone.java826 public GsmCdmaCall getForegroundCall() { in getForegroundCall() method in GsmCdmaPhone
882 GsmCdmaCall call = getForegroundCall(); in handleCallWaitingIncallSupplementaryService()
919 GsmCdmaCall call = getForegroundCall(); in handleCallHoldIncallSupplementaryService()
1041 GsmCdmaCall.State foregroundCallState = getForegroundCall().getState(); in isInCall()
DPhone.java2209 isPresent = isVideoCallOrConference(mImsPhone.getForegroundCall()) || in isImsVideoCallOrConferencePresent()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DDefaultPhoneNotifierTest.java202 doReturn(mForeGroundCall).when(mPhone).getForegroundCall(); in testNotifyPreciseCallState()
DCallManagerTest.java105 doReturn(mFgCall).when(mPhone).getForegroundCall(); in setUp()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneTest.java325 assertEquals(mForegroundCall, mImsPhoneUT.getForegroundCall()); in testGettersAndPassThroughs()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DPhoneMock.java1141 public Call getForegroundCall() { in getForegroundCall() method in PhoneMock