HomeSort by relevance Sort by last modified time
    Searched defs:unhold (Results 1 - 9 of 9) sorted by null

  /packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
TestConnectionManager.java 171 mRemote.unhold();
  /frameworks/base/telecomm/java/android/telecom/
RemoteConference.java 206 public void unhold() { method in class:RemoteConference
208 mConnectionService.unhold(mId);
Call.java 436 public void unhold() { method in class:Call
ConnectionService.java 153 public void unhold(String callId) {
280 unhold((String) msg.obj);
617 private void unhold(String callId) { method in class:ConnectionService
618 Log.d(this, "unhold %s", callId);
620 findConnectionForAction(callId, "unhold").onUnhold();
622 findConferenceForAction(callId, "unhold").onUnhold();
    [all...]
RemoteConnection.java 609 public void unhold() { method in class:RemoteConnection
612 mConnectionService.unhold(mConnectionId);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 220 if (mForegroundCall.getState().isAlive()) mForegroundCall.unhold();
584 void unhold() throws CallStateException { method in class:SipPhone.SipCall
585 if (SC_DBG) log("unhold:");
589 ((SipConnection) c).unhold(audioGroup); method
621 conn.unhold(audioGroup);
873 void unhold(AudioGroup audioGroup) throws CallStateException { method in class:SipPhone.SipConnection
879 throw new CallStateException("unhold(): " + e);
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
CallsManager.java 668 call.unhold();
771 mForegroundCall.unhold();
    [all...]
ConnectionServiceWrapper.java 694 /** @see ConnectionService#unhold(String) */
695 void unhold(Call call) { method in class:ConnectionServiceWrapper
697 if (callId != null && isServiceValid("unhold")) {
699 logOutgoing("unhold %s", callId);
700 mServiceInterface.unhold(callId);
    [all...]
Call.java 843 void unhold() { method in class:Call
847 mConnectionService.unhold(this);
    [all...]

Completed in 662 milliseconds