Home
last modified time | relevance | path

Searched refs:STATE_IN_SERVICE (Results 1 – 25 of 27) sorted by relevance

12

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DServiceStateTest.java63 ss.setDataRegState(ServiceState.STATE_IN_SERVICE); in testRegState()
64 assertEquals(ServiceState.STATE_IN_SERVICE, ss.getDataRegState()); in testRegState()
66 ss.setVoiceRegState(ServiceState.STATE_IN_SERVICE); in testRegState()
67 assertEquals(ServiceState.STATE_IN_SERVICE, ss.getVoiceRegState()); in testRegState()
158 ss.setVoiceRegState(ServiceState.STATE_IN_SERVICE); in testParcel()
DPhoneStateListenerTest.java70 ss.setDataRegState(ServiceState.STATE_IN_SERVICE); in testTriggerServiceStateChanged()
77 verify(mServiceState).setDataRegState(ServiceState.STATE_IN_SERVICE); in testTriggerServiceStateChanged()
DTelephonyEventLogTest.java116 serviceState.setVoiceRegState(ServiceState.STATE_IN_SERVICE); in testWriteServiceStateChanged()
117 serviceState.setDataRegState(ServiceState.STATE_IN_SERVICE); in testWriteServiceStateChanged()
128 m.put(TelephonyEventLog.SERVICE_STATE_VOICE_REG_STATE, ServiceState.STATE_IN_SERVICE); in testWriteServiceStateChanged()
129 m.put(TelephonyEventLog.SERVICE_STATE_DATA_REG_STATE, ServiceState.STATE_IN_SERVICE); in testWriteServiceStateChanged()
DCallManagerTest.java103 doReturn(ServiceState.STATE_IN_SERVICE).when(mServiceState).getState(); in setUp()
332 assertEquals(ServiceState.STATE_IN_SERVICE, CallManager.getInstance().getServiceState()); in testGetServiceState()
336 assertEquals(ServiceState.STATE_IN_SERVICE, CallManager.getInstance().getServiceState()); in testGetServiceState()
340 assertEquals(ServiceState.STATE_IN_SERVICE, CallManager.getInstance().getServiceState()); in testGetServiceState()
DGsmCdmaCallTrackerTest.java94 doReturn(ServiceState.STATE_IN_SERVICE).when(mServiceState).getState(); in testMOCallDial()
DGsmCdmaPhoneTest.java285 doReturn(ServiceState.STATE_IN_SERVICE).when(mServiceState).getState(); in testDial()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DServiceStateTracker.java685 boolean isRegistered = mSS.getVoiceRegState() == ServiceState.STATE_IN_SERVICE || in updatePhoneObject()
1502 (mNewSS.getVoiceRegState() == ServiceState.STATE_IN_SERVICE); in handlePollStateResult()
2115 } else if (mSS.getVoiceRegState() == ServiceState.STATE_IN_SERVICE) { in updateSpnDisplay()
2509 mSS.getVoiceRegState() != ServiceState.STATE_IN_SERVICE in pollStateDoneGsm()
2510 && mNewSS.getVoiceRegState() == ServiceState.STATE_IN_SERVICE; in pollStateDoneGsm()
2513 mSS.getVoiceRegState() == ServiceState.STATE_IN_SERVICE in pollStateDoneGsm()
2514 && mNewSS.getVoiceRegState() != ServiceState.STATE_IN_SERVICE; in pollStateDoneGsm()
2517 mSS.getDataRegState() != ServiceState.STATE_IN_SERVICE in pollStateDoneGsm()
2518 && mNewSS.getDataRegState() == ServiceState.STATE_IN_SERVICE; in pollStateDoneGsm()
2521 mSS.getDataRegState() == ServiceState.STATE_IN_SERVICE in pollStateDoneGsm()
[all …]
DGsmCdmaPhone.java397 if (mSST == null || mSST.mSS.getState() != ServiceState.STATE_IN_SERVICE) { in getServiceState()
502 } else if (mSST.getCurrentDataConnectionState() != ServiceState.STATE_IN_SERVICE in getDataConnectionState()
545 if (mSST.getCurrentDataConnectionState() == ServiceState.STATE_IN_SERVICE) { in getDataActivityState()
1000 && imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) { in handleInCallMmiCommands()
1074 && (imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE); in dial()
1123 && mSST.mSS.getDataRegState() != ServiceState.STATE_IN_SERVICE && !isEmergency) { in dial()
1580 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) in getCallForwardingOption()
1610 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) in setCallForwardingOption()
1645 && (imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)) { in getOutgoingCallerIdDisplay()
1660 && (imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)) { in setOutgoingCallerIdDisplay()
[all …]
DSMSDispatcher.java644 if ( tracker.mImsRetry > 0 && ss != ServiceState.STATE_IN_SERVICE) { in handleSendComplete()
659 if (!isIms() && ss != ServiceState.STATE_IN_SERVICE) { in handleSendComplete()
1273 if (!isIms() && ss != ServiceState.STATE_IN_SERVICE) { in sendMultipartSms()
DPhone.java2864 && imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) { in getVoicePhoneServiceState()
2865 return ServiceState.STATE_IN_SERVICE; in getVoicePhoneServiceState()
3137 && (imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)) { in isVideoEnabled()
DCallManager.java284 if (serviceState == ServiceState.STATE_IN_SERVICE) { in getServiceState()
313 if (serviceState == ServiceState.STATE_IN_SERVICE) { in getServiceState()
/frameworks/base/telephony/java/android/telephony/
DServiceState.java46 public static final int STATE_IN_SERVICE = 0; field in ServiceState
1206 if (voiceSs.mVoiceRegState != STATE_IN_SERVICE) { in mergeServiceStates()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DCdmaSMSDispatcher.java248 if (!isIms() && ss != ServiceState.STATE_IN_SERVICE) { in sendSmsByPstn()
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
DCarrierText.java126 if (ss != null && ss.getDataRegState() == ServiceState.STATE_IN_SERVICE) { in updateCarrierText()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DNetworkControllerBaseTest.java162 setVoiceRegState(ServiceState.STATE_IN_SERVICE); in setupDefaultSignal()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipPhoneBase.java108 s.setVoiceRegState(ServiceState.STATE_IN_SERVICE); in getServiceState()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmSMSDispatcher.java282 if (!isIms() && ss != ServiceState.STATE_IN_SERVICE) { in sendSmsByPstn()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneBase.java140 s.setVoiceRegState(ServiceState.STATE_IN_SERVICE); in getServiceState()
DImsPhoneCallTracker.java1720 mPhone.setServiceState(ServiceState.STATE_IN_SERVICE);
1748 mPhone.setServiceState(ServiceState.STATE_IN_SERVICE);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DMobileSignalController.java265 return mServiceState.getDataRegState() == ServiceState.STATE_IN_SERVICE; in hasService()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDataConnection.java1197 if (sst.getCurrentDataConnectionState() != ServiceState.STATE_IN_SERVICE) { in updateNetworkInfoSuspendState()
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java3759 state = ServiceState.STATE_IN_SERVICE; in fixPhoneServiceState()
3782 state = ServiceState.STATE_IN_SERVICE; in updateAllPhoneStateLocked()
3791 } else if (state == ServiceState.STATE_IN_SERVICE) { in updateAllPhoneStateLocked()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
DGSMPhoneTest.java.broken102 } while (state.getState() != ServiceState.STATE_IN_SERVICE);
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt28475 field public static final int STATE_IN_SERVICE = 0; // 0x0
/frameworks/base/api/
Dcurrent.txt37018 field public static final int STATE_IN_SERVICE = 0; // 0x0

12