HomeSort by relevance Sort by last modified time
    Searched full:getforegroundcall (Results 1 - 25 of 30) sorted by null

1 2

  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java.broken 146 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/
SipPhoneBase.java 61 public abstract Call getForegroundCall();
215 Rlog.v(LOG_TAG, "canDial(): foregndCall: " + getForegroundCall().getState());
218 && (!getForegroundCall().getState().isAlive()
228 Call.State foregroundCallState = getForegroundCall().getState();
514 } else if (getForegroundCall().isIdle()
SipPhone.java 372 public Call getForegroundCall() {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneBase.java 252 Rlog.v(LOG_TAG, "canDial(): foregndCall: " + getForegroundCall().getState());
255 && (!getForegroundCall().getState().isAlive()
265 Call.State foregroundCallState = getForegroundCall().getState();
542 } else if (getForegroundCall().isIdle()
ImsPhone.java 310 getForegroundCall() {
360 ImsPhoneCall call = getForegroundCall();
494 ImsPhoneCall.State foregroundCallState = getForegroundCall().getState();
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
CallAudioRouteStateMachine.java 169 Log.event(mCallsManager.getForegroundCall(), Log.Events.AUDIO_ROUTE,
175 Log.event(mCallsManager.getForegroundCall(), Log.Events.AUDIO_ROUTE,
184 Log.event(mCallsManager.getForegroundCall(), Log.Events.AUDIO_ROUTE,
190 Log.event(mCallsManager.getForegroundCall(), Log.Events.AUDIO_ROUTE,
195 Log.event(mCallsManager.getForegroundCall(), Log.Events.AUDIO_ROUTE,
203 Log.event(mCallsManager.getForegroundCall(), Log.Events.AUDIO_ROUTE,
    [all...]
BluetoothPhoneServiceImpl.java 121 Call call = mCallsManager.getForegroundCall();
142 Call call = mCallsManager.getForegroundCall();
554 boolean isForeground = mCallsManager.getForegroundCall() == call;
    [all...]
CallAudioManager.java 325 public Call getForegroundCall() {
664 Call foregroundCall = getForegroundCall();
CallsManager.java 579 public Call getForegroundCall() {
581 // Happens when getForegroundCall is called before full initialization.
584 return mCallAudioManager.getForegroundCall();
680 if (getForegroundCall() != null) {
681 getForegroundCall().getAnalytics().setCallIsInterrupted(true);
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
CallAudioManagerTest.java 155 assertEquals(call, mCallAudioManager.getForegroundCall());
202 assertEquals(call, mCallAudioManager.getForegroundCall());
BluetoothPhoneServiceTest.java 158 when(mMockCallsManager.getForegroundCall()).thenReturn(null);
179 when(mMockCallsManager.getForegroundCall()).thenReturn(null);
202 when(mMockCallsManager.getForegroundCall()).thenReturn(null);
389 // This test does not define a value for getForegroundCall(), so this ringing call will
    [all...]
CallAudioRouteStateMachineTest.java 134 when(mockCallsManager.getForegroundCall()).thenReturn(fakeCall);
    [all...]
TelecomServiceImplTest.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
TelephonyTester.java 150 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall();
DefaultPhoneNotifier.java 253 Call foregroundCall = sender.getForegroundCall();
CallManager.java 382 mForegroundCalls.add(phone.getForegroundCall());
409 mForegroundCalls.remove(phone.getForegroundCall());
    [all...]
GsmCdmaPhone.java 826 public GsmCdmaCall getForegroundCall() {
    [all...]
PhoneInternalInterface.java 368 Call getForegroundCall();
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DefaultPhoneNotifierTest.java 200 doReturn(mForeGroundCall).when(mPhone).getForegroundCall();
CallManagerTest.java 105 doReturn(mFgCall).when(mPhone).getForegroundCall();
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipConnection.java 160 getPhone().getForegroundCall().getState() != Call.State.DIALING) {
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnectionService.java 449 final Call foregroundCall = phone.getForegroundCall();
455 final Call imsFgCall = phone.getImsPhone().getForegroundCall();
    [all...]
TelephonyConnection.java     [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
ImsPhoneTest.java 318 assertEquals(mForegroundCall, mImsPhoneUT.getForegroundCall());
  /packages/services/Telephony/src/com/android/phone/
PhoneUtils.java 381 Call fgCall = phone.getForegroundCall();
694 Call fgCall = phone.getForegroundCall();
    [all...]

Completed in 723 milliseconds

1 2