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

  /frameworks/base/telephony/java/com/android/internal/telephony/
PhoneConstants.java 29 * <li>OFFHOOK = The phone is off hook. At least one call
35 IDLE, RINGING, OFFHOOK;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
DefaultPhoneNotifier.java 194 case OFFHOOK:
210 return PhoneConstants.State.OFFHOOK;
CallManager.java 236 * then the phone state is RINGING not OFFHOOK
245 } else if (phone.getState() == PhoneConstants.State.OFFHOOK) {
246 if (s == PhoneConstants.State.IDLE) s = PhoneConstants.State.OFFHOOK;
399 case OFFHOOK:
402 // There is no active Fg calls, the OFFHOOK state
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 161 assertEquals(PhoneConstants.State.OFFHOOK, mGSMPhone.getState());
166 assertEquals(PhoneConstants.State.OFFHOOK, mGSMPhone.getState());
203 assertEquals(PhoneConstants.State.OFFHOOK, mGSMPhone.getState());
230 assertEquals(PhoneConstants.State.OFFHOOK, mGSMPhone.getState());
341 assertEquals(PhoneConstants.State.OFFHOOK, mGSMPhone.getState());
549 } while (mGSMPhone.getState() != PhoneConstants.State.OFFHOOK);
622 } while (mGSMPhone.getState() != PhoneConstants.State.OFFHOOK);
651 } while (mGSMPhone.getState() != PhoneConstants.State.OFFHOOK);
682 } while (mGSMPhone.getState() != PhoneConstants.State.OFFHOOK);
    [all...]
  /packages/apps/Phone/src/com/android/phone/
PhoneGlobals.java 342 if (phoneState == PhoneConstants.State.OFFHOOK && !isBluetoothHeadsetAudioOn()) {
395 if (phoneState == PhoneConstants.State.OFFHOOK &&
    [all...]
EmergencyCallHelper.java 297 if (phoneState == PhoneConstants.State.OFFHOOK) {
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) {
421 return (mCM.getState() == PhoneConstants.State.OFFHOOK);
CallController.java     [all...]
NotificationMgr.java 624 (mPhone.getState() == PhoneConstants.State.OFFHOOK) && audioManager.isSpeakerphoneOn();
628 : "updateSpeakerNotification: speaker OFF (or not offhook)");
697 if ((mCM.getState() == PhoneConstants.State.OFFHOOK) && PhoneUtils.getMute()) {
701 if (DBG) log("updateMuteNotification: not muted (or not offhook)");
778 // offhook (like during a non-interactive OTASP call.)
    [all...]
CallNotifier.java 680 if (state == PhoneConstants.State.OFFHOOK) {
    [all...]
InCallScreen.java 459 if (mApp.getPhoneState() == PhoneConstants.State.OFFHOOK) {
    [all...]
InCallTouchUi.java 232 PhoneConstants.State state = cm.getState(); // IDLE, RINGING, or OFFHOOK
352 // in-call audio, namely when the phone is OFFHOOK (not RINGING), *and*
357 if ((state == PhoneConstants.State.OFFHOOK)
    [all...]
  /frameworks/base/telephony/java/android/telephony/
TelephonyManager.java 180 public static final String EXTRA_STATE_OFFHOOK = PhoneConstants.State.OFFHOOK.toString();
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java 535 mState = PhoneConstants.State.OFFHOOK;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMAPhone.java 717 if (mCT.mState == PhoneConstants.State.OFFHOOK) {
749 if ((mCT.mState == PhoneConstants.State.OFFHOOK)&&(check)) {
    [all...]
CdmaCallTracker.java 443 mState = PhoneConstants.State.OFFHOOK;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCallTracker.java 399 mState = PhoneConstants.State.OFFHOOK;
    [all...]
GSMPhone.java 770 if (mCT.mState == PhoneConstants.State.OFFHOOK) {
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 599 case OFFHOOK:
    [all...]

Completed in 1113 milliseconds