Home | History | Annotate | Download | only in phone

Lines Matching full:hangup

381             hangup(bg);
384 hangup(fg);
403 static boolean hangup(CallManager cm) {
410 log("hangup(): hanging up ringing call");
413 log("hangup(): hanging up foreground call");
414 hungup = hangup(fg);
416 log("hangup(): hanging up background call");
417 hungup = hangup(bg);
424 log("hangup(): no active call to hang up");
432 if (DBG) log("hangup ringing call");
438 log("hangupRingingCall(): regular incoming call: hangup()");
439 return hangup(ringing);
448 // CDMA: Ringing call and Call waiting hangup is handled differently.
449 // For Call waiting we DO NOT call the conventional hangup(call) function
450 // as in CDMA we just want to hangup the Call waiting connection.
451 log("hangupRingingCall(): CDMA-specific call-waiting hangup");
456 // Otherwise, the regular hangup() API works for
458 log("hangupRingingCall(): call-waiting call: hangup()");
459 return hangup(ringing);
473 if (DBG) log("hangup active call");
474 return hangup(foreground);
478 if (DBG) log("hangup holding call");
479 return hangup(background);
509 * Trivial wrapper around Call.hangup(), except that we return a
516 static boolean hangup(Call call) {
521 // handle foreground call hangup while there is background call
522 log("- hangup(Call): hangupForegroundResumeBackground...");
525 log("- hangup(Call): regular hangup()...");
526 call.hangup();
530 Log.e(LOG_TAG, "Call hangup: caught " + ex, ex);
537 * Trivial wrapper around Connection.hangup(), except that we silently
541 static void hangup(Connection c) {
544 c.hangup();
547 Log.w(LOG_TAG, "Connection hangup: caught " + ex, ex);
2173 if (DBG) log("handleHeadsetHook: longpress -> hangup");
2174 hangup(app.mCM);