Searched defs:hangup (Results 1 - 2 of 2) sorted by relevance

/packages/services/Telephony/src/com/android/phone/
H A DPhoneUtils.java291 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 ringin
405 static boolean hangup(Call call) { method in class:PhoneUtils
430 static void hangup(Connection c) { method in class:PhoneUtils
[all...]
/packages/services/Telephony/src/com/android/services/telephony/
H A DTelephonyConnection.java547 hangup(android.telephony.DisconnectCause.LOCAL);
582 hangup(android.telephony.DisconnectCause.LOCAL);
611 hangup(android.telephony.DisconnectCause.INCOMING_REJECTED);
1094 protected void hangup(int telephonyDisconnectCode) { method in class:TelephonyConnection
1097 // Hanging up a ringing call requires that we invoke call.hangup() as opposed to
1098 // connection.hangup(). Without this change, the party originating the call will not
1103 call.hangup();
1105 Log.w(this, "Attempting to hangup a connection without backing call.");
1108 // We still prefer to call connection.hangup() for non-ringing calls in order
1110 // call.hangup() whil
[all...]

Completed in 91 milliseconds