/frameworks/base/telephony/java/com/android/internal/telephony/ |
Call.java | 30 IDLE, ACTIVE, HOLDING, DIALING, ALERTING, INCOMING, WAITING, DISCONNECTED, DISCONNECTING; 41 return this == DIALING || this == ALERTING;
|
DriverCall.java | 32 DIALING, // MO call only 122 case 2: return State.DIALING;
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
GsmCall.java | 45 case DIALING: return State.DIALING;
|
GsmConnection.java | 136 /** This is an MO call, created when dialing */ 156 parent.attachFake(this, GsmCall.State.DIALING); 654 || parent.state == GsmCall.State.DIALING 662 case DIALING:
|
GsmCallTracker.java | 191 // next poll, so that we don't clear a failed dialing call 485 && dc.state != DriverCall.State.DIALING) { 520 if ((dc.state == DriverCall.State.DIALING 728 log("(foregnd) hangup dialing or alerting...");
|
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
CdmaCall.java | 46 case DIALING: return State.DIALING;
|
CdmaConnection.java | 143 /** This is an MO call/three way call, created when dialing */ 175 parent.attachFake(this, CdmaCall.State.DIALING); 752 || parent.state == CdmaCall.State.DIALING 760 case DIALING: 887 * 1) convert international dialing prefix "+" to 890 * 2) handle corner cases for PAUSE/WAIT dialing:
|
CdmaCallTracker.java | 561 // If emergency call is not going through while dialing 596 if ((dc.state == DriverCall.State.DIALING 785 log("(foregnd) hangup dialing or alerting..."); [all...] |
/frameworks/base/telephony/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 state == State.DIALING || state == State.ALERTING; 148 /** number of msec between dialing -> alerting and alerting->active */ 216 /** If a call is DIALING or ALERTING, progress it to the next state */ 223 if (call != null && call.state == CallInfo.State.DIALING) { 242 /** If a call is DIALING or ALERTING, progress it all the way to ACTIVE */ 249 if (call != null && (call.state == CallInfo.State.DIALING 273 * hangup ringing, dialing, or active calls 299 && (call.state == CallInfo.State.DIALING [all...] |
/packages/apps/Phone/src/com/android/phone/ |
CallCard.java | 217 // dialing, active, or holding, and no calls are ringing or waiting. 372 case DIALING: 635 // Check if the "Dialing" 3Way call needs to be displayed 707 // All other states (DIALING, INCOMING, etc.) use the "upper title": 732 * "Dialing" or "In call" or "On hold". A null return value means tha [all...] |
CallNotifier.java | 609 && ((mPreviousCdmaCallState == Call.State.DIALING) 644 // since calling does not go through DIALING state, it skips the steps 681 if (callState == Call.State.DIALING || callState == Call.State.ALERTING) { [all...] |
BluetoothHandsfree.java | 681 case DIALING: 763 // stages of DIALING > ALERTING -> ACTIVE we fake the [all...] |
PhoneApp.java | [all...] |
InCallScreen.java | 135 // Amount of time for Displaying "Dialing" for 3way Calling origination [all...] |
/frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
GSMPhoneTest.java | 160 // One DIALING connection 172 assertEquals(Call.State.DIALING, mGSMPhone.getForegroundCall().getState()); 184 assertEquals(Call.State.DIALING, [all...] |