Searched defs:hold (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/telecomm/java/android/telecom/
H A DRemoteConference.java455 * Puts the conference on hold.
457 public void hold() { method in class:RemoteConference
459 mConnectionService.hold(mId);
H A DConnectionService.java72 * receives call-commands such as answer, reject, hold and disconnect.
194 public void hold(String callId) {
357 hold((String) msg.obj);
834 private void hold(String callId) { method in class:ConnectionService
835 Log.d(this, "hold %s", callId);
837 findConnectionForAction(callId, "hold").onHold();
839 findConferenceForAction(callId, "hold").onHold();
H A DCall.java120 /** Call can currently be put on hold or unheld. */
123 /** Call supports the hold feature. */
858 * Instructs this {@code Call} to go on hold.
860 public void hold() { method in class:Call
865 * Instructs this {@link #STATE_HOLDING} call to release from hold.
H A DRemoteConnection.java893 * Instructs this {@code RemoteConnection} to go on hold.
895 public void hold() { method in class:RemoteConnection
898 mConnectionService.hold(mConnectionId);
905 * Instructs this {@link Connection#STATE_HOLDING} call to release from hold.
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsCallSession.java138 * Called when the session is in hold.
147 * Called when the session hold is failed.
150 * @param reasonInfo detailed reason of the session hold failure
157 * Called when the session hold is received from the remote user.
199 * @param newSession the session object that is merged with an active & hold session
224 * Called when the session is updated (except for hold/unhold).
617 * can only hold one listener at a time. Subsequent calls to this method
738 * Puts a call on hold. When it succeeds, {@link Listener#callSessionHeld} is called.
740 * @param profile stream media profile {@link ImsStreamMediaProfile} to hold the call
743 public void hold(ImsStreamMediaProfil method in class:ImsCallSession
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java57 // Minimum time needed between hold/unhold requests.
220 // Wait for at least TIMEOUT_HOLD_PROCESSING ms to occur before sending hold/unhold requests
230 if (mBackgroundCall.getState().isAlive()) mBackgroundCall.hold();
597 void hold() throws CallStateException { method in class:SipPhone.SipCall
598 if (SC_DBG) log("hold:");
600 for (Connection c : mConnections) ((SipConnection) c).hold();
884 void hold() throws CallStateException { method in class:SipPhone.SipConnection
889 throw new CallStateException("hold(): " + e);
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java127 * Called when the call is in hold.
137 * Called when the call hold is failed.
141 * @param reasonInfo detailed reason of the call hold failure
148 * Called when the call hold is received from the remote user.
213 * Called when the call is updated (except for hold/unhold).
374 * Called when the call moves the hold state to the conversation state.
375 * For example, when merging the active & hold call, the state of all the hold call
376 * will be changed from hold state to conversation state.
458 // true if the call is on hold
1152 public void hold() throws ImsException { method in class:ImsCall
[all...]

Completed in 203 milliseconds