/external/nist-sip/java/javax/sip/message/ |
Response.java | 7 int RINGING = 180;
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
PhoneConstants.java | 27 * <li>RINGING = a phone call is ringing or call waiting. 31 * ringing or waiting.</li> 35 IDLE, RINGING, OFFHOOK;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
Tone.java | 67 * Ringing tone. 69 RINGING(0x08), 89 * Ringing tone as selected by the user for incoming speech call.
|
/packages/apps/Stk/src/com/android/stk/ |
TonePlayer.java | 41 mToneMap.put(Tone.RINGING, ToneGenerator.TONE_SUP_RINGTONE);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
DefaultPhoneNotifier.java | 192 case RINGING: 208 return PhoneConstants.State.RINGING;
|
CallManager.java | 88 // list of supported ringing calls 236 * then the phone state is RINGING not OFFHOOK 243 if (phone.getState() == PhoneConstants.State.RINGING) { 244 s = PhoneConstants.State.RINGING; 366 * @return the phone associated with the ringing call 381 case RINGING: 505 * Answers a ringing or waiting call. 515 * @exception CallStateException when call is not ringing or waiting 569 * Reject (ignore) a ringing call. In GSM, this means UDUB 575 * @exception CallStateException when no call is ringing or waitin [all...] |
PhoneBase.java | 357 && ((state == PhoneConstants.State.RINGING) || 369 if (getState() == PhoneConstants.State.RINGING) { [all...] |
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
GSMPhoneTest.java | 299 // One ringing (INCOMING) call 306 assertEquals(PhoneConstants.State.RINGING, mGSMPhone.getState()); 428 // One ringing call 436 assertEquals(PhoneConstants.State.RINGING, mGSMPhone.getState()); 509 // One ringing call 517 assertEquals(PhoneConstants.State.RINGING, mGSMPhone.getState()); 523 // Ringing call disconnects 533 // One Ringing Call 539 } while (mGSMPhone.getState() != PhoneConstants.State.RINGING); 593 } while (mGSMPhone.getState() != PhoneConstants.State.RINGING); [all...] |
/packages/services/Telephony/src/com/android/phone/ |
BluetoothManager.java | 298 // (b) The not-so-obvious case: if an incoming call is ringing, 311 case RINGING: 312 // If an incoming call is ringing, we're *not* yet routing
|
PhoneInterfaceManager.java | 293 // PENDING: should we just silently fail if phone is offhook or ringing? 295 if (state != PhoneConstants.State.OFFHOOK && state != PhoneConstants.State.RINGING) { 379 * false if there wasn't actually a ringing incoming call, or some 406 // No call was ringing. 426 if ((mCM.getState() == PhoneConstants.State.RINGING) 439 return (mCM.getState() == PhoneConstants.State.RINGING); [all...] |
CallNotifier.java | 88 // stopped ringing. Instead, when a call-waiting call first comes in we 244 log("RINGING... (new)"); 255 if ((pb.getState() == PhoneConstants.State.RINGING) 257 if (DBG) log("RINGING... (PHONE_INCOMING_RING event)"); 372 * Handles a "new ringing connection" event from the telephony layer. 377 Call ringing = c.getCall(); local 378 Phone phone = ringing.getPhone(); 386 PhoneUtils.hangupRingingCall(ringing); 391 Log.i(LOG_TAG, "CallNotifier.onNewRingingConnection(): connection not ringing!"); 393 // ringing almost instantly after the onNewRingingConnection( [all...] |
PhoneGlobals.java | 138 * choose first ringing call, first active call, or first background call (typically in [all...] |
/external/nist-sip/java/gov/nist/javax/sip/message/ |
SIPResponse.java | 84 case RINGING : 85 retval = "Ringing";
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
SipPhoneBase.java | 517 mState = PhoneConstants.State.RINGING;
|
/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
SipHelper.java | 355 Response response = mMessageFactory.createResponse(Response.RINGING, 361 if (DBG) log("send RINGING: " + response);
|
SipSessionGroup.java | [all...] |
/frameworks/base/telephony/java/android/telephony/ |
TelephonyManager.java | 147 * If the new state is RINGING, a second extra 234 public static final String EXTRA_STATE_RINGING = PhoneConstants.State.RINGING.toString(); 245 * Only valid when the new call state is RINGING. [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
CdmaCallTracker.java | 72 // A call that is ringing or (call) waiting 285 // ringing Call state change to idle is in CdmaCall.detach 292 throw new CallStateException("phone not ringing"); 299 // so if the phone isn't ringing, this could hang up held 303 throw new CallStateException("phone not ringing"); 450 mState = PhoneConstants.State.RINGING; 575 // Loop through ringing call connections as 739 // if the ringing call connection size is 0. We don't specifically 740 // set the ringing call state to IDLE here to avoid a race condition 805 if (Phone.DEBUG_PHONE) log("(ringing) hangup waiting or background") [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
GsmCallTracker.java | 77 // A call that is ringing or (call) waiting 275 throw new CallStateException("phone not ringing"); 282 // so if the phone isn't ringing, this could hang up held 286 throw new CallStateException("phone not ringing"); 408 mState = PhoneConstants.State.RINGING; 503 // it's a ringing call 508 // which is neither a ringing call or one we created. 664 Rlog.i(LOG_TAG,"Ringing call: " + mRingingCall.toString()); 756 if (Phone.DEBUG_PHONE) log("(ringing) hangup waiting or background"); [all...] |
/packages/apps/Settings/src/com/android/settings/ |
RadioInfo.java | 596 case RINGING: [all...] |