Home
last modified time | relevance | path

Searched refs:STATE_IN_SERVICE (Results 1 – 25 of 28) 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()
162 ss.setVoiceRegState(ServiceState.STATE_IN_SERVICE); in testParcel()
DPhoneStateListenerTest.java73 ss.setDataRegState(ServiceState.STATE_IN_SERVICE); in testTriggerServiceStateChanged()
80 verify(mServiceState).setDataRegState(ServiceState.STATE_IN_SERVICE); in testTriggerServiceStateChanged()
DCallManagerTest.java103 doReturn(ServiceState.STATE_IN_SERVICE).when(mServiceState).getState(); in setUp()
333 assertEquals(ServiceState.STATE_IN_SERVICE, CallManager.getInstance().getServiceState()); in testGetServiceState()
337 assertEquals(ServiceState.STATE_IN_SERVICE, CallManager.getInstance().getServiceState()); in testGetServiceState()
341 assertEquals(ServiceState.STATE_IN_SERVICE, CallManager.getInstance().getServiceState()); in testGetServiceState()
DGsmCdmaCallTrackerTest.java99 doReturn(ServiceState.STATE_IN_SERVICE).when(mServiceState).getState(); in testMOCallDial()
DGsmCdmaPhoneTest.java294 doReturn(ServiceState.STATE_IN_SERVICE).when(mServiceState).getState(); in testDial()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCarrierServiceStateTracker.java101 return (mSST.mSS.getVoiceRegState() == ServiceState.STATE_IN_SERVICE in isPhoneStillRegistered()
102 || mSST.mSS.getDataRegState() == ServiceState.STATE_IN_SERVICE); in isPhoneStillRegistered()
109 return (mSST.mSS.getVoiceRegState() == ServiceState.STATE_IN_SERVICE); in isPhoneVoiceRegistered()
DServiceStateTracker.java629 if (mSS != null && mSS.getDataRegState() == ServiceState.STATE_IN_SERVICE) { in updatePhoneType()
774 boolean isRegistered = mSS.getVoiceRegState() == ServiceState.STATE_IN_SERVICE || in updatePhoneObject()
1686 (mNewSS.getVoiceRegState() == ServiceState.STATE_IN_SERVICE); in handlePollStateResult()
2184 && (combinedRegState == ServiceState.STATE_IN_SERVICE)) { in updateSpnDisplay()
2252 } else if (combinedRegState == ServiceState.STATE_IN_SERVICE) { in updateSpnDisplay()
2665 mSS.getVoiceRegState() != ServiceState.STATE_IN_SERVICE in pollStateDone()
2666 && mNewSS.getVoiceRegState() == ServiceState.STATE_IN_SERVICE; in pollStateDone()
2669 mSS.getVoiceRegState() == ServiceState.STATE_IN_SERVICE in pollStateDone()
2670 && mNewSS.getVoiceRegState() != ServiceState.STATE_IN_SERVICE; in pollStateDone()
2673 mSS.getDataRegState() != ServiceState.STATE_IN_SERVICE in pollStateDone()
[all …]
DGsmCdmaPhone.java403 if (mSST == null || mSST.mSS.getState() != ServiceState.STATE_IN_SERVICE) { in getServiceState()
507 } else if (mSST.getCurrentDataConnectionState() != ServiceState.STATE_IN_SERVICE in getDataConnectionState()
550 if (mSST.getCurrentDataConnectionState() == ServiceState.STATE_IN_SERVICE) { in getDataActivityState()
996 && imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) { in handleInCallMmiCommands()
1070 && (imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE); in dial()
1124 && mSST.mSS.getDataRegState() != ServiceState.STATE_IN_SERVICE && !isEmergency) { in dial()
1139 && !(mSST.mSS.getDataRegState() == ServiceState.STATE_IN_SERVICE in dial()
1277 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) in handleUssdRequest()
1685 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) in getCallForwardingOption()
1715 && ((imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) in setCallForwardingOption()
[all …]
DSMSDispatcher.java667 if ( tracker.mImsRetry > 0 && ss != ServiceState.STATE_IN_SERVICE) { in handleSendComplete()
682 if (!isIms() && ss != ServiceState.STATE_IN_SERVICE) { in handleSendComplete()
1311 if (!isIms() && ss != ServiceState.STATE_IN_SERVICE) { in sendMultipartSms()
DCallManager.java284 if (serviceState == ServiceState.STATE_IN_SERVICE) { in getServiceState()
313 if (serviceState == ServiceState.STATE_IN_SERVICE) { in getServiceState()
DPhone.java3106 && imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) { in getVoicePhoneServiceState()
3107 return ServiceState.STATE_IN_SERVICE; in getVoicePhoneServiceState()
/frameworks/base/telephony/java/android/telephony/
DServiceState.java47 public static final int STATE_IN_SERVICE = 0; field in ServiceState
808 case STATE_IN_SERVICE: in rilServiceStateToString()
1318 if (voiceSs.mVoiceRegState != STATE_IN_SERVICE) { in mergeServiceStates()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneTest.java493 mImsPhoneUT.setServiceState(ServiceState.STATE_IN_SERVICE); in testShouldSendNotificationWhenServiceStateIsChanged()
503 mImsPhoneUT.setServiceState(ServiceState.STATE_IN_SERVICE); in testShouldNotSendNotificationWhenServiceStateIsNotChanged()
506 mImsPhoneUT.setServiceState(ServiceState.STATE_IN_SERVICE); in testShouldNotSendNotificationWhenServiceStateIsNotChanged()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DCdmaSMSDispatcher.java248 if (!isIms() && ss != ServiceState.STATE_IN_SERVICE) { in sendSmsByPstn()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DCarrierText.java126 if (ss != null && ss.getDataRegState() == ServiceState.STATE_IN_SERVICE) { in updateCarrierText()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipPhoneBase.java111 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.java142 s.setVoiceRegState(ServiceState.STATE_IN_SERVICE); in getServiceState()
DImsPhoneCallTracker.java2721 mPhone.setServiceState(ServiceState.STATE_IN_SERVICE);
2750 mPhone.setServiceState(ServiceState.STATE_IN_SERVICE);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DNetworkControllerBaseTest.java191 setVoiceRegState(ServiceState.STATE_IN_SERVICE); in setupDefaultSignal()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DMobileSignalController.java326 return mServiceState.getDataRegState() == ServiceState.STATE_IN_SERVICE; in hasService()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDataConnection.java1251 if (sst.getCurrentDataConnectionState() != ServiceState.STATE_IN_SERVICE) { in updateNetworkInfoSuspendState()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
DGSMPhoneTest.java.broken102 } while (state.getState() != ServiceState.STATE_IN_SERVICE);
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java4528 state = ServiceState.STATE_IN_SERVICE; in fixPhoneServiceState()
4551 state = ServiceState.STATE_IN_SERVICE; in updateAllPhoneStateLocked()
4560 } else if (state == ServiceState.STATE_IN_SERVICE) { in updateAllPhoneStateLocked()
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt28475 field public static final int STATE_IN_SERVICE = 0; // 0x0

12