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

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallManager.java 792 * dialing/alerting, or heldCall can't be active.
795 public void switchHoldingAndActive(Call heldCall) throws CallStateException {
800 Rlog.d(LOG_TAG, "switchHoldingAndActive(" +heldCall + ")");
808 if (heldCall != null) {
809 heldPhone = heldCall.getPhone();
821 Rlog.d(LOG_TAG, "End switchHoldingAndActive(" +heldCall + ")");
829 * Note: this is noop if there is no foreground call or the heldCall is null
831 * @param heldCall to become foreground
834 public void hangupForegroundResumeBackground(Call heldCall) throws CallStateException {
839 Rlog.d(LOG_TAG, "hangupForegroundResumeBackground(" +heldCall + ")")
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
BluetoothPhoneService.java 479 Call heldCall = callsManager.getHeldCall();
482 Log.i(TAG, "Active: %s\nRinging: %s\nHeld: %s", activeCall, ringingCall, heldCall);
488 } else if (heldCall != null) {
489 callsManager.disconnectCall(heldCall);
497 } else if (heldCall != null) {
498 callsManager.unholdCall(heldCall);
509 } else if (heldCall != null) {
512 callsManager.unholdCall(heldCall);
684 Call heldCall = callsManager.getHeldCall();
733 (heldCall != mOldHeldCall && !ignoreHeldCallChange) |
    [all...]
CallsManager.java 648 Call heldCall = getHeldCall();
649 if (heldCall != null) {
651 heldCall);
652 heldCall.disconnect();
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
InCallPresenter.java 809 final Call heldCall = calls.getBackgroundCall();
810 if (heldCall != null) {
813 final boolean canHold = heldCall.can(android.telecom.Call.Details.CAPABILITY_HOLD);
815 Log.v(this, "heldCall: " + heldCall + ", canHold: " + canHold);
818 if (heldCall.getState() == Call.State.ONHOLD && canHold) {
819 TelecomAdapter.getInstance().unholdCall(heldCall.getId());
    [all...]
  /packages/services/Telephony/src/com/android/phone/
PhoneUtils.java 743 * @param heldCall is the background call want to be swapped
745 static void switchHoldingAndActive(Call heldCall) {
749 if (heldCall.isIdle()) {
750 // no heldCall, so it is to hold active call
753 // has particular heldCall, so to switch
754 cm.switchHoldingAndActive(heldCall);
    [all...]

Completed in 89 milliseconds