HomeSort by relevance Sort by last modified time
    Searched defs:activeCall (Results 1 - 2 of 2) sorted by null

  /packages/services/Telecomm/src/com/android/server/telecom/
BluetoothPhoneService.java 477 Call activeCall = callsManager.getActiveCall();
482 Log.i(TAG, "Active: %s\nRinging: %s\nHeld: %s", activeCall, ringingCall, heldCall);
493 if (activeCall != null) {
494 callsManager.disconnectCall(activeCall);
503 if (activeCall != null && activeCall.can(Connection.CAPABILITY_SWAP_CONFERENCE)) {
504 activeCall.swapConference();
514 } else if (activeCall != null && activeCall.can(Connection.CAPABILITY_HOLD)) {
515 callsManager.holdCall(activeCall);
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
InCallPresenter.java 784 final Call activeCall = calls.getActiveCall();
785 if (activeCall != null) {
788 final boolean canMerge = activeCall.can(
790 final boolean canSwap = activeCall.can(
793 Log.v(this, "activeCall: " + activeCall + ", canMerge: " + canMerge +
798 TelecomAdapter.getInstance().merge(activeCall.getId());
801 TelecomAdapter.getInstance().swap(activeCall.getId());
    [all...]

Completed in 101 milliseconds