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

  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
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/
DefaultPhoneNotifier.java 139 case RINGING:
155 return Phone.State.RINGING;
PhoneBase.java 253 && ((state == Phone.State.RINGING) || (state == Phone.State.IDLE))) {
264 if (getState() == Phone.State.RINGING) {
    [all...]
Phone.java 53 * <li>RINGING = a phone call is ringing or call waiting.
57 * ringing or waiting.</li>
61 IDLE, RINGING, OFFHOOK;
280 * then the phone state is RINGING not OFFHOOK
327 * Notifies when a previously untracked non-ringing/waiting connection has appeared.
356 * Notifies when a new ringing or waiting connection has appeared.<p>
370 * Unregisters for new ringing connection notification.
635 * Answers a ringing or waiting call. Active calls, if any, go on hold.
640 * @exception CallStateException when no call is ringing or waitin
    [all...]
  /packages/apps/Stk/src/com/android/stk/
TonePlayer.java 41 mToneMap.put(Tone.RINGING, ToneGenerator.TONE_SUP_RINGTONE);
  /packages/apps/Phone/src/com/android/phone/
PhoneInterfaceManager.java 230 // PENDING: should we just silently fail if phone is offhook or ringing?
232 if (state != Phone.State.OFFHOOK && state != Phone.State.RINGING) {
315 * false if there wasn't actually a ringing incoming call, or some
342 // No call was ringing.
362 if ((mPhone.getState() == Phone.State.RINGING)
376 return (mPhone.getState() == Phone.State.RINGING);
PhoneApp.java 517 case RINGING:
518 if (DBG) Log.d(LOG_TAG, "Resetting audio state/mode: RINGING");
648 * But if the phone is in use (either off-hook or ringing) we instead
658 // Phone is OFFHOOK or RINGING.
    [all...]
InCallScreen.java 755 // to the foreground while an incoming call is ringing
    [all...]
InCallTouchUi.java 237 Phone.State state = phone.getState(); // IDLE, RINGING, or OFFHOOK
243 if (state == Phone.State.RINGING) {
244 // A phone call is ringing *or* call waiting.
246 // Watch out: even if the phone state is RINGING, it's
247 // possible for the ringing call to be in the DISCONNECTING
253 if (DBG) log("- updateState: RINGING! Showing incoming call controls...");
260 // UI even if the phone is still in the RINGING state.
271 // to worry about false touches while it's ringing.)
    [all...]
CallNotifier.java 80 // stopped ringing. Instead, when a call-waiting call first comes in we
232 if (DBG) log("RINGING... (new)");
243 if ((pb.getState() == Phone.State.RINGING)
245 if (DBG) log("RINGING... (PHONE_INCOMING_RING event)");
268 // any more, so start ringing NOW even if it means we won't
418 if (VDBG) log("- connection is ringing! state = " + state);
429 // it would be a "call waiting" call or a regular ringing call.
431 // ringing or bringing up the in-call UI.
434 // intercept) new ringing connections. An app could reject the
500 // we wait for the alloted time before ringing
    [all...]
CallCard.java 210 Phone.State state = phone.getState(); // IDLE, RINGING, or OFFHOOK
211 if (state == Phone.State.RINGING) {
212 // A phone call is ringing *or* call waiting
217 // dialing, active, or holding, and no calls are ringing or waiting.
255 * Updates the UI for the state where the phone is in use, but not ringing.
296 * Updates the UI for the state where an incoming call is ringing (or
    [all...]
BluetoothHandsfree.java     [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 304 // One ringing (INCOMING) call
311 assertEquals(Phone.State.RINGING, mGSMPhone.getState());
433 // One ringing call
441 assertEquals(Phone.State.RINGING, mGSMPhone.getState());
514 // One ringing call
522 assertEquals(Phone.State.RINGING, mGSMPhone.getState());
528 // Ringing call disconnects
538 // One Ringing Call
544 } while (mGSMPhone.getState() != Phone.State.RINGING);
598 } while (mGSMPhone.getState() != Phone.State.RINGING);
    [all...]
  /frameworks/base/telephony/java/android/telephony/
TelephonyManager.java 90 * If the new state is RINGING, a second extra
134 public static final String EXTRA_STATE_RINGING = Phone.State.RINGING.toString();
145 * Only valid when the new call state is RINGING.
705 /** Device call state: Ringing. A new call arrived and is
706 * ringing or waiting. In the latter case, another call is
710 * that is dialing, active, or on hold, and no calls are ringing
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmCallTracker.java 73 // A call that is ringing or (call) waiting
246 throw new CallStateException("phone not ringing");
253 // so if the phone isn't ringing, this could hang up held
257 throw new CallStateException("phone not ringing");
377 state = Phone.State.RINGING;
470 // it's a ringing call
475 // which is neither a ringing call or one we created.
631 Log.i(LOG_TAG,"Ringing call: " + ringingCall.toString());
723 if (Phone.DEBUG_PHONE) log("(ringing) hangup waiting or background");
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 69 // A call that is ringing or (call) waiting
277 // ringing Call state change to idle is in CdmaCall.detach
284 throw new CallStateException("phone not ringing");
291 // so if the phone isn't ringing, this could hang up held
295 throw new CallStateException("phone not ringing");
424 state = Phone.State.RINGING;
547 // Loop through ringing call connections as
714 // if the ringing call connection size is 0. We don't specifically
715 // set the ringing call state to IDLE here to avoid a race condition
780 if (Phone.DEBUG_PHONE) log("(ringing) hangup waiting or background")
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 550 case RINGING:
    [all...]

Completed in 407 milliseconds