Lines Matching defs:call

64     static final int MAX_CONNECTIONS_PER_CALL = 5; // only 5 connections allowed per call
77 // A call that is ringing or (call) waiting
118 // PhoneApp that the call is gone. Do that here
119 Rlog.d(LOG_TAG, "dispose: call connnection onDisconnect, cause LOST_SIGNAL");
130 Rlog.d(LOG_TAG, "dispose: call mPendingMO.onDsiconnect, cause LOST_SIGNAL");
190 // note that this triggers call state changed notif
197 // The new call must be assigned to the foreground call.
198 // That call must be idle, so place anything that's
203 // and we need to make sure the foreground call is clear
210 // next poll, so that we don't clear a failed dialing call
229 // handlePollCalls() will notice this call not present
233 // Always unmute when initiating a new call
263 // in case the active/holding call disappeared and this
264 // is no longer call waiting
268 // Always unmute when answering a new call
479 // It's our pending mobile originating call
485 // Someone has already asked to hangup this call
503 // it's a ringing call
507 // Something strange happened: a call appeared
508 // which is neither a ringing call or one we created.
510 // call, or something else (eg, SIM) initiated the call.
512 Rlog.i(LOG_TAG,"Phantom call appeared " + dc);
514 // If it's a connected call, set the connect time so that
539 // we were tracking. Assume dropped call and new call
575 // We expect the pending call to appear in the list
590 // clear the "local hangup" and "missed/rejected call"
592 // These cases need no "last call fail" reason
597 // Missed or rejected call
606 log("missed/rejected call, conn.cause=" + conn.mCause);
653 // call list when it gets the CommandException
664 Rlog.i(LOG_TAG,"Ringing call: " + mRingingCall.toString());
671 Rlog.i(LOG_TAG,"Foreground call: " + mForegroundCall.toString());
678 Rlog.i(LOG_TAG,"Background call: " + mBackgroundCall.toString());
697 // We're hanging up an outgoing call that doesn't have it's
750 hangup (GsmCall call) throws CallStateException {
751 if (call.getConnections().size() == 0) {
752 throw new CallStateException("no connections in call");
755 if (call == mRingingCall) {
758 } else if (call == mForegroundCall) {
759 if (call.isDialingOrAlerting()) {
763 hangup((GsmConnection)(call.getConnections().get(0)));
767 } else if (call == mBackgroundCall) {
770 log("hangup all conns in background call");
772 hangupAllConnections(call);
777 throw new RuntimeException ("GsmCall " + call +
781 call.onHangupLocal();
797 void hangupConnectionByIndex(GsmCall call, int index)
799 int count = call.mConnections.size();
801 GsmConnection cn = (GsmConnection)call.mConnections.get(i);
811 void hangupAllConnections(GsmCall call) {
813 int count = call.mConnections.size();
815 GsmConnection cn = (GsmConnection)call.mConnections.get(i);
824 GsmConnection getConnectionByIndex(GsmCall call, int index)
826 int count = call.mConnections.size();
828 GsmConnection cn = (GsmConnection)call.mConnections.get(i);