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

/frameworks/base/telephony/java/android/telephony/ims/stub/
H A DImsCallSessionImplBase.java122 * can only hold one listener at a time. Subsequent calls to this method
208 * Puts a call on hold. When it succeeds, {@link ImsCallSession.Listener#callSessionHeld} is
211 * @param profile stream media profile {@link ImsStreamMediaProfile} to hold the call
216 public void hold(ImsStreamMediaProfile profile) throws RemoteException { method in class:ImsCallSessionImplBase
220 * Continues a call that's on hold. When it succeeds,
232 * Merges the active & hold call. When the merge starts,
/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, null /*Session.Info*/);
H A DConnectionService.java84 * receives call-commands such as answer, reject, hold and disconnect.
353 public void hold(String callId, Session.Info sessionInfo) {
793 hold((String) args.arg1);
1468 private void hold(String callId) { method in class:ConnectionService
1469 Log.d(this, "hold %s", callId);
1471 findConnectionForAction(callId, "hold").onHold();
1473 findConferenceForAction(callId, "hold").onHold();
H A DRemoteConnection.java948 * Instructs this {@code RemoteConnection} to go on hold.
950 public void hold() { method in class:RemoteConnection
953 mConnectionService.hold(mConnectionId, null /*Session.Info*/);
960 * Instructs this {@link Connection#STATE_HOLDING} call to release from hold.
H A DCall.java137 /** Call can currently be put on hold or unheld. */
140 /** Call supports the hold feature. */
1093 * Instructs this {@code Call} to go on hold.
1095 public void hold() { method in class:Call
1100 * Instructs this {@link #STATE_HOLDING} call to release from hold.
/frameworks/base/telephony/java/com/android/ims/internal/
H A DImsCallSession.java139 * Called when the session is in hold.
148 * Called when the session hold is failed.
151 * @param reasonInfo detailed reason of the session hold failure
158 * Called when the session hold is received from the remote user.
200 * @param newSession the session object that is merged with an active & hold session
225 * Called when the session is updated (except for hold/unhold).
618 * can only hold one listener at a time. Subsequent calls to this method
739 * Puts a call on hold. When it succeeds, {@link Listener#callSessionHeld} is called.
741 * @param profile stream media profile {@link ImsStreamMediaProfile} to hold the call
744 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();
885 void hold() throws CallStateException { method in class:SipPhone.SipConnection
890 throw new CallStateException("hold(): " + e);
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java131 * Called when the call is in hold.
141 * Called when the call hold is failed.
145 * @param reasonInfo detailed reason of the call hold failure
152 * Called when the call hold is received from the remote user.
217 * Called when the call is updated (except for hold/unhold).
378 * Called when the call moves the hold state to the conversation state.
379 * For example, when merging the active & hold call, the state of all the hold call
380 * will be changed from hold state to conversation state.
462 // true if the call is on hold
1216 public void hold() throws ImsException { method in class:ImsCall
[all...]

Completed in 1903 milliseconds