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

/frameworks/base/telecomm/java/android/telecom/
H A DRemoteConference.java457 * Puts the conference on hold.
459 public void hold() { method in class:RemoteConference
461 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);
837 private void hold(String callId) { method in class:ConnectionService
838 Log.d(this, "hold %s", callId);
840 findConnectionForAction(callId, "hold").onHold();
842 findConferenceForAction(callId, "hold").onHold();
H A DCall.java120 /** Call can currently be put on hold or unheld. */
123 /** Call supports the hold feature. */
887 * Instructs this {@code Call} to go on hold.
889 public void hold() { method in class:Call
894 * Instructs this {@link #STATE_HOLDING} call to release from hold.
H A DRemoteConnection.java903 * Instructs this {@code RemoteConnection} to go on hold.
905 public void hold() { method in class:RemoteConnection
908 mConnectionService.hold(mConnectionId);
915 * 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.java130 * Called when the call is in hold.
140 * Called when the call hold is failed.
144 * @param reasonInfo detailed reason of the call hold failure
151 * Called when the call hold is received from the remote user.
216 * Called when the call is updated (except for hold/unhold).
377 * Called when the call moves the hold state to the conversation state.
378 * For example, when merging the active & hold call, the state of all the hold call
379 * will be changed from hold state to conversation state.
461 // true if the call is on hold
1215 public void hold() throws ImsException { method in class:ImsCall
[all...]

Completed in 275 milliseconds