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

  /frameworks/base/telecomm/java/android/telecom/
PhoneCapabilities.java 28 /** Call can currently be put on hold or unheld. */
29 public static final int HOLD = 0x00000001;
31 /** Call supports the hold feature. */
95 public static final int ALL = HOLD | SUPPORT_HOLD | MERGE_CONFERENCE | SWAP_CONFERENCE
102 if ((capabilities & HOLD) != 0) {
103 builder.append(" HOLD");
  /external/chromium_org/ash/accelerators/
key_hold_detector.cc 73 state_ = HOLD;
75 case HOLD:
89 case HOLD: {
key_hold_detector.h 18 // This class is used to implement action when a user press and hold the key.
37 // Called when the key is release after hold.
48 // A state to keep track of one click and click and hold operation.
53 // Click and hold:
55 // HOLD[OnKeyHold] --(press)--> HOLD[OnKeyHold] --(release)-->
60 HOLD
  /packages/services/Telephony/src/com/android/services/telephony/
GsmConnection.java 69 capabilities |= PhoneCapabilities.HOLD;
GsmConference.java 39 PhoneCapabilities.HOLD |
93 * Invoked when the conference should be put on hold.
104 * Invoked when the conference should be moved from hold to active.
  /external/smack/src/com/kenai/jbosh/
Attributes.java 43 static final BodyQName HOLD = BodyQName.createBOSH("hold");
CMSessionParams.java 38 private final AttrHold hold; field in class:CMSessionParams
72 hold = aHold;
103 resp.getAttribute(Attributes.HOLD)),
154 return hold;
BOSHClient.java 847 builder.setAttribute(Attributes.HOLD, "1");
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
CallButtonPresenter.java 198 Log.i(this, "Putting the call on hold: " + mCall);
201 Log.i(this, "Removing the call from hold: " + mCall);
375 Log.v(this, "Show hold ", call.can(PhoneCapabilities.SUPPORT_HOLD));
376 Log.v(this, "Enable hold", call.can(PhoneCapabilities.HOLD));
383 final boolean enableHoldOption = call.can(PhoneCapabilities.HOLD);
393 // Show either HOLD or SWAP, but not both. If neither HOLD or SWAP is available:
394 // (1) If the device normally can hold, show HOLD in a disabled state
    [all...]
InCallPresenter.java 704 // We have a hold call so presumeable it will always support HOLD...but
706 final boolean canHold = heldCall.can(PhoneCapabilities.HOLD);
    [all...]
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipConnection.java 251 capabilities |= PhoneCapabilities.HOLD;
  /packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
TestConnectionService.java 141 capabilities |= PhoneCapabilities.HOLD;
  /packages/services/Telecomm/src/com/android/server/telecom/
CallsManager.java 432 // Do not support any more live calls. Our options are to move a call to hold, disconnect
527 // STATE_DIALING, put it on hold before answering the call.
531 if (0 == (mForegroundCall.getCallCapabilities() & PhoneCapabilities.HOLD)) {
532 // This call does not support hold. If it is from a different connection
541 mForegroundCall.hold();
544 // on-hold before answering the new call.
640 * Instructs Telecom to put the specified call on hold. Intended to be invoked by the
642 * the user hitting the hold button during an active call.
646 Log.w(this, "Unknown call (%s) asked to be put on hold", call);
648 Log.d(this, "Putting call on hold: (%s)", call)
    [all...]
BluetoothPhoneService.java 96 // Hold all active calls and accepts a waiting/held call
332 // If a call is being put on hold because of a new connecting call, ignore the
508 // CallsManager will hold any active calls when unhold() is called on a
512 } else if (activeCall != null && activeCall.can(PhoneCapabilities.HOLD)) {
590 // to expose the calls as having distinct states (ACTIVE vs HOLD) or the functionality
703 // call on hold, but only if the conference wasn't previously merged.
    [all...]

Completed in 753 milliseconds