Home
last modified time | relevance | path

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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
DGSMPhoneTest.java.broken147 assertEquals(0, mGSMPhone.getBackgroundCall().getConnections().size());
151 assertEquals(Call.State.IDLE, mGSMPhone.getBackgroundCall().getState());
178 assertEquals(0, mGSMPhone.getBackgroundCall().getConnections().size());
183 assertEquals(Call.State.IDLE, mGSMPhone.getBackgroundCall().getState());
210 assertEquals(0, mGSMPhone.getBackgroundCall().getConnections().size());
214 assertEquals(Call.State.IDLE, mGSMPhone.getBackgroundCall().getState());
237 assertEquals(0, mGSMPhone.getBackgroundCall().getConnections().size());
241 assertEquals(Call.State.IDLE, mGSMPhone.getBackgroundCall().getState());
262 assertEquals(0, mGSMPhone.getBackgroundCall().getConnections().size());
266 assertEquals(Call.State.IDLE, mGSMPhone.getBackgroundCall().getState());
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipPhoneBase.java61 public abstract Call getBackgroundCall(); in getBackgroundCall() method in SipPhoneBase
196 Rlog.v(LOG_TAG, "canDial(): backgndCall: " + getBackgroundCall().getState()); in canDial()
199 || !getBackgroundCall().getState().isAlive()); in canDial()
209 Call.State backgroundCallState = getBackgroundCall().getState(); in isInCall()
492 && getBackgroundCall().isIdle()) { in updatePhoneState()
DSipPhone.java377 public Call getBackgroundCall() { in getBackgroundCall() method in SipPhone
981 ? (SipCall) getBackgroundCall() in separate()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneBase.java247 Rlog.v(LOG_TAG, "canDial(): backgndCall: " + getBackgroundCall().getState()); in canDial()
250 || !getBackgroundCall().getState().isAlive()); in canDial()
260 Call.State backgroundCallState = getBackgroundCall().getState(); in isInCall()
539 && getBackgroundCall().isIdle()) { in updatePhoneState()
DImsPhone.java437 getBackgroundCall() { in getBackgroundCall() method in ImsPhone
484 } else if (getBackgroundCall().getState() != ImsPhoneCall.State.IDLE) { in handleCallDeflectionIncallSupplementaryService()
487 mCT.hangup(getBackgroundCall()); in handleCallDeflectionIncallSupplementaryService()
678 ImsPhoneCall.State backgroundCallState = getBackgroundCall().getState(); in isInCall()
1311 connList.addAll(getBackgroundCall().mConnections); in getHandoverConnection()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCallManager.java370 mBackgroundCalls.add(phone.getBackgroundCall()); in registerPhone()
398 mBackgroundCalls.remove(phone.getBackgroundCall()); in unregisterPhone()
798 boolean hasBgCall = !(activePhone.getBackgroundCall().isIdle()); in dial()
1807 : mDefaultPhone.getBackgroundCall(); in getFirstActiveBgCall()
1830 return phone.getBackgroundCall(); in getFirstActiveBgCall()
1836 : phone.getBackgroundCall(); in getFirstActiveBgCall()
DPhoneInternalInterface.java393 Call getBackgroundCall(); in getBackgroundCall() method
DDefaultPhoneNotifier.java272 Call backgroundCall = sender.getBackgroundCall(); in notifyPreciseCallState()
DGsmCdmaPhone.java920 public GsmCdmaCall getBackgroundCall() { in getBackgroundCall() method in GsmCdmaPhone
981 } else if (getBackgroundCall().getState() != GsmCdmaCall.State.IDLE) { in handleCallDeflectionIncallSupplementaryService()
1159 GsmCdmaCall.State backgroundCallState = getBackgroundCall().getState(); in isInCall()
DPhone.java2463 isVideoCallOrConference(mImsPhone.getBackgroundCall()) || in isImsVideoCallOrConferencePresent()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DDefaultPhoneNotifierTest.java201 doReturn(mBackGroundCall).when(mPhone).getBackgroundCall(); in testNotifyPreciseCallState()
DCallManagerTest.java103 doReturn(mBgCall).when(mPhone).getBackgroundCall(); in setUp()
DPhoneSwitcherTest.java868 doReturn(mInactiveCall).when(mPhone).getBackgroundCall(); in setAllPhonesInactive()
871 doReturn(mInactiveCall).when(mPhone2).getBackgroundCall(); in setAllPhonesInactive()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DPhoneMock.java1135 public Call getBackgroundCall() { in getBackgroundCall() method in PhoneMock
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneTest.java332 assertEquals(mBackgroundCall, mImsPhoneUT.getBackgroundCall()); in testGettersAndPassThroughs()