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

  /packages/services/Telecomm/src/com/android/server/telecom/
CallState.java 39 * Common transitions are to {@link #DIALING} state for a successful call or
51 * Indicates that a call is outgoing and in the dialing state. A call transitions to this state
56 public static final int DIALING = 3;
69 * {@link #DIALING} call or a {@link #RINGING} call being answered by the other party.
114 case DIALING:
115 return "DIALING";
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
DriverCall.java 32 DIALING, // MO call only
124 case 2: return State.DIALING;
Call.java 35 IDLE, ACTIVE, HOLDING, DIALING, ALERTING, INCOMING, WAITING, DISCONNECTED, DISCONNECTING;
46 return this == DIALING || this == ALERTING;
55 case DIALING: return State.DIALING;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedGsmCallState.java 34 DIALING(2), // MO call only
66 return new CallInfo (false, State.DIALING, false, number);
115 return mState == State.DIALING || mState == State.ALERTING;
148 /** number of msec between dialing -> alerting and alerting->active */
217 /** If a call is DIALING or ALERTING, progress it to the next state */
224 if (call != null && call.mState == CallInfo.State.DIALING) {
243 /** If a call is DIALING or ALERTING, progress it all the way to ACTIVE */
250 if (call != null && (call.mState == CallInfo.State.DIALING
274 * hangup ringing, dialing, or active calls
300 && (call.mState == CallInfo.State.DIALING
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
Call.java 52 public static final int DIALING = 6; /* An outgoing call during dial phase */
53 public static final int REDIALING = 7; /* Subsequent dialing attempt after a failure */
68 case DIALING:
79 return state == DIALING || state == REDIALING;
96 case DIALING:
97 return "DIALING";
327 return Call.State.DIALING;

Completed in 154 milliseconds