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

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCall.java 85 hangup() throws CallStateException { method in class:CdmaCall
86 mOwner.hangup(this);
178 * Note that at this point, the hangup request has been dispatched to the radio
CdmaConnection.java 251 public void hangup() throws CallStateException { method in class:CdmaConnection
253 mOwner.hangup(this);
318 * Note that at this point, the hangup request has been dispatched to the radio
CdmaCallTracker.java 546 // Someone has already asked to hangup this call
556 "poll: hangupPendingMO, hangup conn " + i);
557 hangup(mConnections[i]);
559 Rlog.e(LOG_TAG, "unexpected error on hangup");
563 // Wait for hangup and repoll
686 // clear the "local hangup" and "missed/rejected call"
748 hangup (CdmaConnection conn) throws CallStateException { method in class:CdmaCallTracker
758 if (Phone.DEBUG_PHONE) log("hangup: set hangupPendingMO to true");
771 // the hangup reason is user ignoring or timing out. So conn.onDisconnect()
783 Rlog.w(LOG_TAG,"CdmaCallTracker WARN: hangup() on absent connection
825 hangup (CdmaCall call) throws CallStateException { method in class:CdmaCallTracker
838 hangup((CdmaConnection)(call.getConnections().get(0))); method
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCall.java 88 hangup() throws CallStateException { method in class:GsmCall
89 mOwner.hangup(this);
180 * Note that at this point, the hangup request has been dispatched to the radio
GsmConnection.java 222 public void hangup() throws CallStateException { method in class:GsmConnection
224 mOwner.hangup(this);
289 * Note that at this point, the hangup request has been dispatched to the radio
GsmCallTracker.java 475 // Someone has already asked to hangup this call
480 "poll: hangupPendingMO, hangup conn " + i);
481 hangup(mConnections[i]);
483 Rlog.e(LOG_TAG, "unexpected error on hangup");
487 // Wait for hangup and repoll
588 // clear the "local hangup" and "missed/rejected call"
688 hangup (GsmConnection conn) throws CallStateException { method in class:GsmCallTracker
698 if (Phone.DEBUG_PHONE) log("hangup: set hangupPendingMO to true");
706 Rlog.w(LOG_TAG,"GsmCallTracker WARN: hangup() on absent connection "
748 hangup (GsmCall call) throws CallStateException method in class:GsmCallTracker
761 hangup((GsmConnection)(call.getConnections().get(0))); method
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCall.java 56 mOwner.hangup(this);
58 //Rlog.e(LOG_TAG, "dispose: unexpected error on hangup", ex);
93 hangup() throws CallStateException { method in class:ImsPhoneCall
94 mOwner.hangup(this);
ImsPhoneConnection.java 280 public void hangup() throws CallStateException { method in class:ImsPhoneConnection
282 mOwner.hangup(this);
ImsPhoneCallTracker.java 466 hangup(mRingingCall);
669 hangup (ImsPhoneConnection conn) throws CallStateException { method in class:ImsPhoneCallTracker
670 if (DBG) log("hangup connection");
677 hangup(conn.getCall());
683 hangup (ImsPhoneCall call) throws CallStateException { method in class:ImsPhoneCallTracker
684 if (DBG) log("hangup call");
694 if (Phone.DEBUG_PHONE) log("(ringing) hangup incoming");
699 log("(foregnd) hangup dialing or alerting...");
703 log("(foregnd) hangup foreground");
709 log("(backgnd) hangup waiting or background")
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
CdmaConference.java 52 Log.d(this, "Found multiparty call to hangup for conference.");
54 call.hangup();
56 Log.e(this, e, "Exception thrown trying to hangup conference");
GsmConference.java 53 Log.d(this, "Found multiparty call to hangup for conference.");
55 call.hangup();
58 Log.e(this, e, "Exception thrown trying to hangup conference");
TelephonyConnection.java 196 hangup(android.telephony.DisconnectCause.LOCAL);
214 hangup(android.telephony.DisconnectCause.LOCAL);
243 hangup(android.telephony.DisconnectCause.INCOMING_REJECTED);
393 protected void hangup(int telephonyDisconnectCode) { method in class:TelephonyConnection
396 // Hanging up a ringing call requires that we invoke call.hangup() as opposed to
397 // connection.hangup(). Without this change, the party originating the call will not
402 call.hangup();
404 Log.w(this, "Attempting to hangup a connection without backing call.");
407 // We still prefer to call connection.hangup() for non-ringing calls in order
409 // call.hangup() while in a conference, we would end up hanging up the entir
    [all...]
CdmaConnection.java 196 originalConnection.hangup();
198 Log.e(this, e, "Failed to hangup call waiting call");
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 252 mGSMPhone.getForegroundCall().hangup();
364 // One disconnected (local hangup) call
369 conn.hangup();
631 mGSMPhone.getForegroundCall().hangup();
645 // Test held and hangup held calls
737 // Hangup conference call, ringing call still around
738 mGSMPhone.getBackgroundCall().hangup();
1919 private void hangup(Connection cn) throws CallStateException { method in class:GSMPhoneTest
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Call.java 75 public abstract void hangup() throws CallStateException; method in class:Call
249 * Hangup call if it is alive
254 hangup();
Connection.java 292 * Hangup individual Connection
294 public abstract void hangup() throws CallStateException; method in class:Connection
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipConnection.java 106 getCall().hangup();
108 mOriginalConnection.hangup();
  /packages/services/Telephony/src/com/android/phone/
PhoneUtils.java 292 hangup(bg);
295 hangup(fg);
314 static boolean hangup(CallManager cm) { method in class:PhoneUtils
321 log("hangup(): hanging up ringing call");
324 log("hangup(): hanging up foreground call");
325 hungup = hangup(fg);
327 log("hangup(): hanging up background call");
328 hungup = hangup(bg);
335 log("hangup(): no active call to hang up");
343 if (DBG) log("hangup ringing call")
406 static boolean hangup(Call call) { method in class:PhoneUtils
431 static void hangup(Connection c) { method in class:PhoneUtils
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 498 public void hangup() throws CallStateException { method in class:SipPhone.SipCall
501 if (SC_DBG) log("hangup: call " + getState()
507 c.hangup();
514 if (SC_DBG) log("hangup: dead call " + getState()
535 hangup(); method
931 public void hangup() throws CallStateException { method in class:SipPhone.SipConnection
    [all...]
  /external/mdnsresponder/mDNSShared/
dnsextd.c 138 static mDNSBool hangup = 0; variable
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
term.h 505 #define hangup CUR Strings[279] macro
    [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 276 milliseconds