Home | History | Annotate | Download | only in telecom

Lines Matching refs:HOLD

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);
649 call.hold();
654 * Instructs Telecom to release the specified call from hold. Intended to be invoked by
656 * by the user hitting the hold button during a held call.
660 Log.w(this, "Unknown call (%s) asked to be removed from hold", call);
665 c.hold();
1182 // holding call and hold an active call.
1200 // hold but they still support adding a call by going immediately into conference
1206 // Try to hold the live call before attempting the new outgoing call.
1207 if (liveCall.can(PhoneCapabilities.HOLD)) {
1208 liveCall.hold();