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

  /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 351 && ((state == PhoneConstants.State.RINGING) ||
363 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/apps/Phone/src/com/android/phone/
PhoneInterfaceManager.java 263 // PENDING: should we just silently fail if phone is offhook or ringing?
265 if (state != PhoneConstants.State.OFFHOOK && state != PhoneConstants.State.RINGING) {
365 * false if there wasn't actually a ringing incoming call, or some
392 // No call was ringing.
412 if ((mCM.getState() == PhoneConstants.State.RINGING)
425 return (mCM.getState() == PhoneConstants.State.RINGING);
InCallScreen.java 3464 Call ringing = mCM.getFirstActiveRingingCall(); local
    [all...]
CallNotifier.java 90 // stopped ringing. Instead, when a call-waiting call first comes in we
252 log("RINGING... (new)");
263 if ((pb.getState() == PhoneConstants.State.RINGING)
265 if (DBG) log("RINGING... (PHONE_INCOMING_RING event)");
391 * Handles a "new ringing connection" event from the telephony layer.
396 Call ringing = c.getCall(); local
397 Phone phone = ringing.getPhone();
405 PhoneUtils.hangupRingingCall(ringing);
410 Log.i(LOG_TAG, "CallNotifier.onNewRingingConnection(): connection not ringing!");
412 // ringing almost instantly after the onNewRingingConnection(
    [all...]
PhoneGlobals.java 140 * choose first ringing call, first active call, or first background call (typically in
    [all...]
CallCard.java 97 /** Primary "call info" block (the foreground or ringing call) */
253 PhoneConstants.State state = cm.getState(); // IDLE, RINGING, or OFFHOOK
266 // and ignore the ringing call. This case happens when the telephony
267 // layer rejects the ringing call while the FG call is dialing/alerting,
272 // A phone call is ringing, call waiting *or* being rejected
279 // dialing, active, or holding, and no calls are ringing or waiting,
321 boolean ringing = (state == PhoneConstants.State.RINGING);
322 if (DBG) log("updateCallInfoLayout()... ringing = " + ringing);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPResponse.java 84 case RINGING :
85 retval = "Ringing";
  /frameworks/base/telephony/java/android/telephony/
TelephonyManager.java 108 * If the new state is RINGING, a second extra
174 public static final String EXTRA_STATE_RINGING = PhoneConstants.State.RINGING.toString();
185 * Only valid when the new call state is RINGING.
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java 530 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/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 72 // A call that is ringing or (call) waiting
275 // ringing Call state change to idle is in CdmaCall.detach
282 throw new CallStateException("phone not ringing");
289 // so if the phone isn't ringing, this could hang up held
293 throw new CallStateException("phone not ringing");
440 mState = PhoneConstants.State.RINGING;
564 // Loop through ringing call connections as
731 // if the ringing call connection size is 0. We don't specifically
732 // set the ringing call state to IDLE here to avoid a race condition
797 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
265 throw new CallStateException("phone not ringing");
272 // so if the phone isn't ringing, this could hang up held
276 throw new CallStateException("phone not ringing");
396 mState = PhoneConstants.State.RINGING;
490 // it's a ringing call
495 // which is neither a ringing call or one we created.
655 Rlog.i(LOG_TAG,"Ringing call: " + mRingingCall.toString());
747 if (Phone.DEBUG_PHONE) log("(ringing) hangup waiting or background");
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 596 case RINGING:
    [all...]

Completed in 514 milliseconds