HomeSort by relevance Sort by last modified time
    Searched refs:heldCall (Results 1 - 9 of 9) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallManager.java 756 * dialing/alerting, or heldCall can't be active.
759 public void switchHoldingAndActive(Call heldCall) throws CallStateException {
764 Rlog.d(LOG_TAG, "switchHoldingAndActive(" +heldCall + ")");
772 if (heldCall != null) {
773 heldPhone = heldCall.getPhone();
785 Rlog.d(LOG_TAG, "End switchHoldingAndActive(" +heldCall + ")");
793 * Note: this is noop if there is no foreground call or the heldCall is null
795 * @param heldCall to become foreground
798 public void hangupForegroundResumeBackground(Call heldCall) throws CallStateException {
803 Rlog.d(LOG_TAG, "hangupForegroundResumeBackground(" +heldCall + ")")
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
BluetoothPhoneServiceImpl.java 486 Call heldCall = mCallsManager.getHeldCall();
489 Log.i(TAG, "Active: %s\nRinging: %s\nHeld: %s", activeCall, ringingCall, heldCall);
495 } else if (heldCall != null) {
496 mCallsManager.disconnectCall(heldCall);
504 } else if (heldCall != null) {
505 mCallsManager.unholdCall(heldCall);
518 } else if (heldCall != null) {
521 mCallsManager.unholdCall(heldCall);
675 Call heldCall = mCallsManager.getHeldCall();
731 (heldCall != mOldHeldCall && !ignoreHeldCallChange)))))
    [all...]
CallsManager.java     [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
BluetoothPhoneServiceTest.java 309 final Call heldCall = createHeldCall();
312 calls.add(heldCall);
315 when(heldCall.getState()).thenReturn(CallState.ACTIVE);
317 when(heldCall.isIncoming()).thenReturn(true);
320 when(heldCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null,
329 add(heldCall);
333 when(heldCall.getParentCall()).thenReturn(parentCall);
610 Call heldCall = createHeldCall();
616 verify(mMockCallsManager).unholdCall(eq(heldCall));
633 Call heldCall = createHeldCall()
    [all...]
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
InCallPresenter.java     [all...]
  /packages/services/Telephony/src/com/android/phone/
PhoneUtils.java 716 * @param heldCall is the background call want to be swapped
718 static void switchHoldingAndActive(Call heldCall) {
722 if (heldCall.isIdle()) {
723 // no heldCall, so it is to hold active call
726 // has particular heldCall, so to switch
727 cm.switchHoldingAndActive(heldCall);
    [all...]
  /external/robolectric/v3/runtime/
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
android-all-4.4_r1-robolectric-1.jar 

Completed in 170 milliseconds