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

  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaCall.java 91 hangup() throws CallStateException { method in class:CdmaCall
92 owner.hangup(this);
180 * Note that at this point, the hangup request has been dispatched to the radio
CdmaConnection.java 292 public void hangup() throws CallStateException { method in class:CdmaConnection
294 owner.hangup(this);
377 * Note that at this point, the hangup request has been dispatched to the radio
CdmaCallTracker.java 110 if(c != null) hangup(c);
112 Log.e(LOG_TAG, "unexpected error on hangup during dispose");
117 if(pendingMO != null) hangup(pendingMO);
119 Log.e(LOG_TAG, "unexpected error on hangup during dispose");
503 // Someone has already asked to hangup this call
513 "poll: hangupPendingMO, hangup conn " + i);
514 hangup(connections[i]);
516 Log.e(LOG_TAG, "unexpected error on hangup");
520 // Wait for hangup and repoll
632 // clear the "local hangup" and "missed/rejected call
697 hangup (CdmaConnection conn) throws CallStateException { method in class:CdmaCallTracker
774 hangup (CdmaCall call) throws CallStateException { method in class:CdmaCallTracker
787 hangup((CdmaConnection)(call.getConnections().get(0))); method
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmCall.java 87 hangup() throws CallStateException { method in class:GsmCall
88 owner.hangup(this);
176 * Note that at this point, the hangup request has been dispatched to the radio
GsmConnection.java 238 public void hangup() throws CallStateException { method in class:GsmConnection
240 owner.hangup(this);
323 * Note that at this point, the hangup request has been dispatched to the radio
GsmCallTracker.java 111 if(c != null) hangup(c);
113 Log.e(LOG_TAG, "unexpected error on hangup during dispose");
118 if(pendingMO != null) hangup(pendingMO);
120 Log.e(LOG_TAG, "unexpected error on hangup during dispose");
452 // Someone has already asked to hangup this call
457 "poll: hangupPendingMO, hangup conn " + i);
458 hangup(connections[i]);
460 Log.e(LOG_TAG, "unexpected error on hangup");
464 // Wait for hangup and repoll
553 // clear the "local hangup" and "missed/rejected call
657 hangup (GsmConnection conn) throws CallStateException { method in class:GsmCallTracker
717 hangup (GsmCall call) throws CallStateException { method in class:GsmCallTracker
730 hangup((GsmConnection)(call.getConnections().get(0))); method
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
Call.java 70 public abstract void hangup() throws CallStateException; method in class:Call
244 * Hangup call if it is alive
249 hangup();
Connection.java 37 LOCAL, /* normal; local hangup */
215 * Hangup individual Connection
217 public abstract void hangup() throws CallStateException; method in class:Connection
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 255 mGSMPhone.getForegroundCall().hangup();
367 // One disconnected (local hangup) call
372 conn.hangup();
634 mGSMPhone.getForegroundCall().hangup();
648 // Test held and hangup held calls
740 // Hangup conference call, ringing call still around
741 mGSMPhone.getBackgroundCall().hangup();
1922 private void hangup(Connection cn) throws CallStateException { method in class:GSMPhoneTest
    [all...]
  /packages/apps/Phone/src/com/android/phone/
PhoneUtils.java 316 static boolean hangup(Phone phone) { method in class:PhoneUtils
323 if (DBG) log("HANGUP ringing call");
326 if (DBG) log("HANGUP foreground call");
327 hungup = hangup(fg);
329 if (DBG) log("HANGUP background call");
330 hungup = hangup(bg);
339 if (DBG) log("hangup ringing call");
344 // CDMA: Ringing call and Call waiting hangup is handled differently.
345 // For Call waiting we DO NOT call the conventional hangup(call) function
349 if (DBG) log("hangup ringing call")
417 static boolean hangup(Call call) { method in class:PhoneUtils
433 static void hangup(Connection c) { method in class:PhoneUtils
    [all...]

Completed in 103 milliseconds