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

1 2

  /frameworks/base/telecomm/java/android/telecom/
CallState.java 71 public static final int RINGING = 4;
76 * {@link #DIALING} call or a {@link #RINGING} call being answered by the other party.
123 case RINGING:
124 return "RINGING";
Call.java 49 * The state of an incoming {@code Call} when ringing locally, but not yet connected.
    [all...]
  /external/nist-sip/java/javax/sip/message/
Response.java 7 int RINGING = 180;
  /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.
  /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;
  /packages/apps/Stk/src/com/android/stk/
TonePlayer.java 41 mToneMap.put(Tone.RINGING, ToneGenerator.TONE_SUP_RINGTONE);
  /packages/services/Telecomm/src/com/android/server/telecom/
PhoneStateBroadcaster.java 49 * already a ringing call, don't broadcast EXTRA_STATE_OFFHOOK.
57 if (call.getState() == CallState.RINGING) {
CallsManager.java 225 setCallState(incomingCall, CallState.RINGING);
634 // If the foreground call is not the ringing call and it is currently isActive() or
    [all...]
Ringer.java 92 if (call.isIncoming() && call.getState() == CallState.RINGING) {
94 Log.wtf(this, "New ringing call is already in list of unanswered calls");
108 if (newState != CallState.RINGING) {
132 * Silences the ringer for any actively ringing calls.
135 // Remove all calls from the "ringing" set and then update the ringer.
CallAudioManager.java 398 // mIsRinging is false, but there is a foreground ringing call present. Don't
400 // the time it takes for the foreground call to transition from RINGING to ACTIVE/
492 // (b) The not-so-obvious case: if an incoming call is ringing, and we expect that audio
502 case CallState.RINGING:
534 // We ignore any foreground call that is in the ringing state because we deal with ringing
536 if (call != null && call.getState() == CallState.RINGING) {
545 return call != null && call.getState() == CallState.RINGING;
Call.java 746 setState(CallState.RINGING);
    [all...]
TelecomService.java 823 Call call = mCallsManager.getFirstCallWithState(CallState.RINGING);
837 CallState.RINGING,
842 if (call.getState() == CallState.RINGING) {
    [all...]
MissedCallNotifier.java 87 if (oldState == CallState.RINGING && newState == CallState.DISCONNECTED &&
BluetoothPhoneService.java 755 "ringing number %s, " +
756 "ringing type %s",
774 "ringing number %s, " +
775 "ringing type %s",
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/unit/
InCallWakeLockControllerTest.java 78 mInCallWakeLockController.onCallStateChanged(mCall, CallState.NEW, CallState.RINGING);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 301 // One ringing (INCOMING) call
308 assertEquals(PhoneConstants.State.RINGING, mGSMPhone.getState());
430 // One ringing call
438 assertEquals(PhoneConstants.State.RINGING, mGSMPhone.getState());
511 // One ringing call
519 assertEquals(PhoneConstants.State.RINGING, mGSMPhone.getState());
525 // Ringing call disconnects
535 // One Ringing Call
541 } while (mGSMPhone.getState() != PhoneConstants.State.RINGING);
595 } while (mGSMPhone.getState() != PhoneConstants.State.RINGING);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
DefaultPhoneNotifier.java 317 case RINGING:
333 return PhoneConstants.State.RINGING;
CallManager.java 96 // list of supported ringing calls
270 * then the phone state is RINGING not OFFHOOK
277 if (phone.getState() == PhoneConstants.State.RINGING) {
278 s = PhoneConstants.State.RINGING;
289 * then the phone state is RINGING not OFFHOOK
297 if (phone.getState() == PhoneConstants.State.RINGING) {
298 s = PhoneConstants.State.RINGING;
502 * @return the phone associated with the ringing call
509 * @return the phone associated with the ringing call
536 case RINGING
    [all...]
PhoneBase.java 524 && ((state == PhoneConstants.State.RINGING) ||
536 if (getState() == PhoneConstants.State.RINGING) {
    [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/imsphone/
ImsPhoneBase.java 547 mState = PhoneConstants.State.RINGING;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java 509 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);
  /packages/services/Telephony/src/com/android/phone/
PhoneGlobals.java 131 * choose first ringing call, first active call, or first background call (typically in
691 // Force the screen to be on if the phone is ringing or dialing,
698 boolean isRinging = (state == PhoneConstants.State.RINGING);
732 // "release" request once for a single call (RINGING + OFFHOOK and IDLE).
    [all...]
PhoneInterfaceManager.java     [all...]

Completed in 605 milliseconds

1 2