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

  /frameworks/base/telecomm/java/android/telecom/
CallState.java 44 * Common transitions are to {@link #DIALING} state for a successful call or
50 * Indicates that the call is about to go into the outgoing and dialing state but is waiting for
58 * Indicates that a call is outgoing and in the dialing state. A call transitions to this state
63 public static final int DIALING = 3;
76 * {@link #DIALING} call or a {@link #RINGING} call being answered by the other party.
121 case DIALING:
122 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 33 IDLE, ACTIVE, HOLDING, DIALING, ALERTING, INCOMING, WAITING, DISCONNECTED, DISCONNECTING;
44 return this == DIALING || this == ALERTING;
  /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 46 public static final int DIALING = 5; /* An outgoing call during dial phase */
47 public static final int REDIALING = 6; /* Subsequent dialing attempt after a failure */
61 case DIALING:
72 return state == DIALING || state == REDIALING;
87 case DIALING:
88 return "DIALING";
236 return Call.State.DIALING;

Completed in 1334 milliseconds