/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | ServiceStateTest.java | 63 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()
|
D | PhoneStateListenerTest.java | 73 ss.setDataRegState(ServiceState.STATE_IN_SERVICE); in testTriggerServiceStateChanged() 80 verify(mServiceState).setDataRegState(ServiceState.STATE_IN_SERVICE); in testTriggerServiceStateChanged()
|
D | CallManagerTest.java | 103 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()
|
D | GsmCdmaCallTrackerTest.java | 99 doReturn(ServiceState.STATE_IN_SERVICE).when(mServiceState).getState(); in testMOCallDial()
|
D | GsmCdmaPhoneTest.java | 294 doReturn(ServiceState.STATE_IN_SERVICE).when(mServiceState).getState(); in testDial()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | CarrierServiceStateTracker.java | 101 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()
|
D | ServiceStateTracker.java | 629 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 …]
|
D | GsmCdmaPhone.java | 403 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 …]
|
D | SMSDispatcher.java | 667 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()
|
D | CallManager.java | 284 if (serviceState == ServiceState.STATE_IN_SERVICE) { in getServiceState() 313 if (serviceState == ServiceState.STATE_IN_SERVICE) { in getServiceState()
|
D | Phone.java | 3106 && imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE) { in getVoicePhoneServiceState() 3107 return ServiceState.STATE_IN_SERVICE; in getVoicePhoneServiceState()
|
/frameworks/base/telephony/java/android/telephony/ |
D | ServiceState.java | 47 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/ |
D | ImsPhoneTest.java | 493 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/ |
D | CdmaSMSDispatcher.java | 248 if (!isIms() && ss != ServiceState.STATE_IN_SERVICE) { in sendSmsByPstn()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | CarrierText.java | 126 if (ss != null && ss.getDataRegState() == ServiceState.STATE_IN_SERVICE) { in updateCarrierText()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
D | SipPhoneBase.java | 111 s.setVoiceRegState(ServiceState.STATE_IN_SERVICE); in getServiceState()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
D | GsmSMSDispatcher.java | 282 if (!isIms() && ss != ServiceState.STATE_IN_SERVICE) { in sendSmsByPstn()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneBase.java | 142 s.setVoiceRegState(ServiceState.STATE_IN_SERVICE); in getServiceState()
|
D | ImsPhoneCallTracker.java | 2721 mPhone.setServiceState(ServiceState.STATE_IN_SERVICE); 2750 mPhone.setServiceState(ServiceState.STATE_IN_SERVICE);
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
D | NetworkControllerBaseTest.java | 191 setVoiceRegState(ServiceState.STATE_IN_SERVICE); in setupDefaultSignal()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | MobileSignalController.java | 326 return mServiceState.getDataRegState() == ServiceState.STATE_IN_SERVICE; in hasService()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | DataConnection.java | 1251 if (sst.getCurrentDataConnectionState() != ServiceState.STATE_IN_SERVICE) { in updateNetworkInfoSuspendState()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
D | GSMPhoneTest.java.broken | 102 } while (state.getState() != ServiceState.STATE_IN_SERVICE);
|
/frameworks/base/core/java/com/android/internal/os/ |
D | BatteryStatsImpl.java | 4528 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/ |
D | android-22.txt | 28475 field public static final int STATE_IN_SERVICE = 0; // 0x0
|