HomeSort by relevance Sort by last modified time
    Searched refs:INCOMING (Results 1 - 17 of 17) sorted by null

  /packages/apps/Mms/src/com/android/mms/transaction/
AbstractRetryScheme.java 22 public static final int INCOMING = 2;
  /frameworks/base/telephony/java/com/android/internal/telephony/
Call.java 30 IDLE, ACTIVE, HOLDING, DIALING, ALERTING, INCOMING, WAITING, DISCONNECTED, DISCONNECTING;
37 return this == INCOMING || this == WAITING;
DriverCall.java 34 INCOMING, // MT call only
125 case 4: return State.INCOMING;
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmCall.java 47 case INCOMING: return State.INCOMING;
GsmCallTracker.java 247 if (ringingCall.getState() == GsmCall.State.INCOMING) {
248 Log.i("phone", "acceptCall: incoming...");
274 if (ringingCall.getState() == GsmCall.State.INCOMING) {
275 throw new CallStateException("cannot be in the incoming state");
534 || (dc.state == DriverCall.State.INCOMING
GsmConnection.java 504 * An incoming or outgoing call has connected
512 // bug #678474: incoming call interpreted as missed call, even though
652 /** "connecting" means "has never been ACTIVE" for both incoming
675 case INCOMING:
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaCall.java 48 case INCOMING: return State.INCOMING;
CdmaCallTracker.java 272 if (ringingCall.getState() == CdmaCall.State.INCOMING) {
273 Log.i("phone", "acceptCall: incoming...");
307 if (ringingCall.getState() == CdmaCall.State.INCOMING) {
308 throw new CallStateException("cannot be in the incoming state");
623 || (dc.state == DriverCall.State.INCOMING
    [all...]
CdmaConnection.java 577 * An incoming or outgoing call has connected
585 // bug #678474: incoming call interpreted as missed call, even though
595 // Only release wake lock for incoming calls, for outgoing calls the wake lock
745 /** "connecting" means "has never been ACTIVE" for both incoming
768 case INCOMING:
  /frameworks/base/telephony/java/com/android/internal/telephony/test/
SimulatedGsmCallState.java 36 INCOMING(4), // MT call only
71 return new CallInfo (true, State.INCOMING, false, number);
120 return state == State.INCOMING || state == State.WAITING;
182 // ensure there aren't already calls INCOMING or WAITING
189 && (call.state == CallInfo.State.INCOMING
287 && (call.state == CallInfo.State.INCOMING
363 && (call.state == CallInfo.State.INCOMING
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipPhone.java 99 // FIXME: is it true that we cannot take any incoming call if
134 if ((ringingCall.getState() == Call.State.INCOMING) ||
436 Call.State newState = makeCallWait ? State.WAITING : State.INCOMING;
658 if (newState == Call.State.INCOMING) {
659 setState(mOwner.getState()); // INCOMING or WAITING
825 mAdapter.onCallEnded(((mState == Call.State.INCOMING)
873 case SipSession.State.INCOMING_CALL_ANSWERING: return Call.State.INCOMING;
    [all...]
  /hardware/ril/mock-ril/src/js/
ril_vars.js 346 var INCOMING = 1; /* incoming call */
  /packages/apps/Phone/src/com/android/phone/
BluetoothHandsfree.java 303 Log.i(TAG, "Routing audio for incoming SCO connection");
315 Log.i(TAG, "Rejecting incoming SCO connection");
319 Log.e(TAG, "Error when closing incoming Sco socket");
400 // since an incoming SCO connection can happen immediately with
525 * incoming SCO connections, regardless of whether we have a listening
641 // 1: incoming call setup
    [all...]
CallCard.java 55 * a call on hold, or an incoming call.)
101 // Onscreen hint for the incoming call RotarySelector widget.
206 // but the incoming call *does* briefly exist in the DISCONNECTING or
314 * Updates the UI for the state where an incoming call is ringing (or
322 // Display caller-id info and photo from the incoming call:
327 // (Since the caller-id info for the incoming call totally trumps
394 case INCOMING:
536 // One special feature of the "number" text field: For incoming
643 case INCOMING:
647 // Also, display a special icon (alongside the "Incoming call
    [all...]
PhoneUtils.java 232 * actually a ringing incoming call, or some other error occurred.
264 // This is the FIRST incoming call being answered.
360 if (state == Call.State.INCOMING) {
361 // Regular incoming call (with no other active calls)
362 log("hangupRingingCall(): regular incoming call: hangup()");
365 // Call-waiting: there's an incoming call, but another call is
386 // Unexpected state: the ringing call isn't INCOMING or
389 // (Presumably the incoming call went away at the exact moment
391 Log.w(LOG_TAG, "hangupRingingCall: no INCOMING or WAITING call");
    [all...]
CallNotifier.java 54 * (like starting the Ringer and Incoming Call UI, playing in-call tones,
394 // Check for a few cases where we totally ignore incoming calls.
397 // that an incoming call occurred. (This will generally send the
399 // incoming-call UI and the user had declined the call.)
412 // This is a very strange case: an incoming call that stopped
424 // State will be either INCOMING or WAITING.
430 // us get incoming connections in the first place.
442 // incoming call by consuming the broadcast and doing nothing, or
447 // We'd need to protect this with a new "intercept incoming calls"
454 if (VDBG) log("Holding wake lock on new incoming connection.")
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 298 // One ringing (INCOMING) call
317 assertEquals(Call.State.INCOMING, mGSMPhone.getRingingCall().getState());
443 assertEquals(Call.State.INCOMING, mGSMPhone.getRingingCall().getState());
607 // Test incoming not missed calls
    [all...]

Completed in 1844 milliseconds