HomeSort by relevance Sort by last modified time
    Searched defs:hangup (Results 1 - 25 of 32) sorted by null

1 2

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
GsmCdmaCall.java 58 public void hangup() throws CallStateException { method in class:GsmCdmaCall
59 mOwner.hangup(this);
141 * Note that at this point, the hangup request has been dispatched to the radio
Call.java 82 public abstract void hangup() throws CallStateException; method in class:Call
249 * Hangup call if it is alive
254 hangup();
GsmCdmaConnection.java 344 public void hangup() throws CallStateException { method in class:GsmCdmaConnection
346 mOwner.hangup(this);
406 * Note that at this point, the hangup request has been dispatched to the radio
    [all...]
Connection.java 463 * Hangup individual Connection
465 public abstract void hangup() throws CallStateException; method in class:Connection
GsmCdmaCallTracker.java 804 // Someone has already asked to hangup this call
815 "poll: hangupPendingMO, hangup conn " + i);
816 hangup(mConnections[i]);
818 Rlog.e(LOG_TAG, "unexpected error on hangup");
822 // Wait for hangup and repoll
1147 public void hangup(GsmCdmaConnection conn) throws CallStateException { method in class:GsmCdmaCallTracker
1222 public void hangup(GsmCdmaCall call) throws CallStateException { method in class:GsmCdmaCallTracker
1236 hangup((GsmCdmaConnection)(call.getConnections().get(0))); method
    [all...]
RIL.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsExternalCall.java 55 public void hangup() throws CallStateException { method in class:ImsExternalCall
ImsPhoneCall.java 76 mOwner.hangup(this);
78 //Rlog.e(LOG_TAG, "dispose: unexpected error on hangup", ex);
118 hangup() throws CallStateException { method in class:ImsPhoneCall
119 mOwner.hangup(this);
ImsExternalConnection.java 127 public void hangup() throws CallStateException { method in class:ImsExternalConnection
128 // No-op - Hangup is not supported for external calls.
ImsPhoneConnection.java 322 public void hangup() throws CallStateException { method in class:ImsPhoneConnection
324 mOwner.hangup(this);
    [all...]
ImsPhoneCallTracker.java 1402 public void hangup (ImsPhoneConnection conn) throws CallStateException { method in class:ImsPhoneCallTracker
1415 public void hangup (ImsPhoneCall call) throws CallStateException { method in class:ImsPhoneCallTracker
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmCdmaCallTest.java 96 //verify hangup calls mCT.hangup
98 mCallUnderTest.hangup();
99 verify(mCT).hangup(mCallUnderTest);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
ImsPhoneCallTest.java 109 mImsCallUT.hangup();
110 verify(mImsCT).hangup(eq(mImsCallUT));
  /packages/services/Telephony/src/com/android/services/telephony/
CdmaConference.java 60 Log.d(this, "Found multiparty call to hangup for conference.");
62 call.hangup();
64 Log.e(this, e, "Exception thrown trying to hangup conference");
PstnIncomingCallNotifier.java 211 connection.hangup();
241 connection.hangup();
TelephonyConference.java 66 Log.d(this, "Found multiparty call to hangup for conference.");
68 call.hangup();
71 Log.e(this, e, "Exception thrown trying to hangup conference");
CdmaConnection.java 223 originalConnection.hangup();
225 Log.e(this, e, "Failed to hangup call waiting call");
TelephonyConnection.java 531 hangup(android.telephony.DisconnectCause.LOCAL);
566 hangup(android.telephony.DisconnectCause.LOCAL);
595 hangup(android.telephony.DisconnectCause.INCOMING_REJECTED);
1051 protected void hangup(int telephonyDisconnectCode) { method in class:TelephonyConnection
    [all...]
ImsConference.java 413 call.hangup();
415 Log.e(this, e, "Exception thrown trying to hangup conference");
    [all...]
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipConnection.java 109 getCall().hangup();
111 mOriginalConnection.hangup();
  /packages/services/Telephony/src/com/android/phone/
PhoneUtils.java 291 hangup(bg);
294 hangup(fg);
313 static boolean hangup(CallManager cm) { method in class:PhoneUtils
320 log("hangup(): hanging up ringing call");
323 log("hangup(): hanging up foreground call");
324 hungup = hangup(fg);
326 log("hangup(): hanging up background call");
327 hungup = hangup(bg);
334 log("hangup(): no active call to hang up");
342 if (DBG) log("hangup ringing call")
405 static boolean hangup(Call call) { method in class:PhoneUtils
430 static void hangup(Connection c) { method in class:PhoneUtils
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 518 public void hangup() throws CallStateException { method in class:SipPhone.SipCall
521 if (SC_DBG) log("hangup: call " + getState()
527 c.hangup();
534 if (SC_DBG) log("hangup: dead call " + getState()
555 hangup(); method
952 public void hangup() throws CallStateException { method in class:SipPhone.SipConnection
    [all...]
  /external/mdnsresponder/mDNSShared/
dnsextd.c 138 static mDNSBool hangup = 0; variable
    [all...]
  /hardware/ril/libril/
ril_service.cpp 150 Return<void> hangup(int32_t serial, int32_t gsmIndex);
918 Return<void> RadioImpl::hangup(int32_t serial, int32_t gsmIndex) { function in class:RadioImpl
920 RLOGD("hangup: serial %d", serial);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
term.h 505 #define hangup CUR Strings[279] macro
    [all...]

Completed in 1304 milliseconds

1 2