Home
last modified time | relevance | path

Searched refs:getDataRegistrationState (Results 1 – 25 of 52) sorted by relevance

123

/aosp12/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/
H A DUtilsTest.java223 when(mServiceState.getDataRegistrationState()).thenReturn(ServiceState.STATE_IN_SERVICE); in isInService_voiceOutOfServiceDataInService_returnTrue()
239 when(mServiceState.getDataRegistrationState()).thenReturn(ServiceState.STATE_IN_SERVICE); in isInService_voiceOutOfServiceDataInServiceOnIwLan_returnFalse()
247 when(mServiceState.getDataRegistrationState()).thenReturn( in isInService_voiceOutOfServiceDataOutOfService_returnFalse()
285 when(mServiceState.getDataRegistrationState()).thenReturn(ServiceState.STATE_IN_SERVICE); in getCombinedServiceState_voiceOutOfServiceDataInService_returnInService()
298 when(mServiceState.getDataRegistrationState()).thenReturn(ServiceState.STATE_IN_SERVICE); in getCombinedServiceState_voiceOutOfServiceDataInServiceOnIwLan_returnOutOfService()
311 when(mServiceState.getDataRegistrationState()).thenReturn( in getCombinedServiceState_voiceOutOfServiceDataOutOfService_returnOutOfService()
/aosp12/packages/apps/Settings/tests/unit/src/com/android/settings/network/telephony/
H A DPreferredNetworkModePreferenceControllerTest.java117 when(mServiceState.getDataRegistrationState()).thenReturn( in getAvailabilityStatus_hidePreferredNetworkType_returnUnavailable()
122 when(mServiceState.getDataRegistrationState()).thenReturn(ServiceState.STATE_IN_SERVICE); in getAvailabilityStatus_hidePreferredNetworkType_returnUnavailable()
/aosp12/packages/services/Telephony/src/com/android/phone/
H A DServiceStateProvider.java445 final int data_reg_state = ss.getDataRegistrationState(); in query()
582 return oldSS.getDataRegistrationState() != newSS.getDataRegistrationState(); in dataRegStateChanged()
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DPhoneStateListenerExecutorTest.java55 mServiceState.setDataRegState(serviceState.getDataRegistrationState()); in setUp()
H A DPhoneStateListenerTest.java56 mServiceState.setDataRegState(serviceState.getDataRegistrationState()); in setUp()
H A DCarrierServiceStateTrackerTest.java153 doReturn(ServiceState.STATE_OUT_OF_SERVICE).when(mSST.mSS).getDataRegistrationState(); in testSendPrefNetworkNotification()
H A DServiceStateTest.java69 assertEquals(ServiceState.STATE_IN_SERVICE, ss.getDataRegistrationState()); in testRegState()
/aosp12/hardware/interfaces/radio/1.0/vts/functional/
H A Dradio_hidl_hal_data.cpp26 TEST_P(RadioHidlTest, getDataRegistrationState) { in TEST_P() argument
30 radio->getDataRegistrationState(serial); in TEST_P()
/aosp12/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/simstatus/
H A DSimStatusDialogControllerTest.java250 when(mServiceState.getDataRegistrationState()).thenReturn( in initialize_updateVoiceDataOutOfService_shouldUpdateSettingAndResetSignalStrength()
264 when(mServiceState.getDataRegistrationState()).thenReturn(ServiceState.STATE_IN_SERVICE); in initialize_updateVoiceOutOfServiceDataInService_shouldUpdateTextToBeInService()
306 when(mServiceState.getDataRegistrationState()).thenReturn(ServiceState.STATE_IN_SERVICE); in initialize_updateVoiceOutOfServiceDataInService_shouldUpdateSignalStrengthTo50()
/aosp12/packages/apps/Settings/tests/unit/src/com/android/settings/network/
H A DEnabledNetworkModePreferenceControllerTest.java131 when(mServiceState.getDataRegistrationState()).thenReturn( in getAvailabilityStatus_hidePreferredNetworkType_returnUnavailable()
136 when(mServiceState.getDataRegistrationState()).thenReturn(ServiceState.STATE_IN_SERVICE); in getAvailabilityStatus_hidePreferredNetworkType_returnUnavailable()
/aosp12/packages/services/Telephony/tests/src/com/android/phone/
H A DServiceStateProviderTest.java343 assertEquals(ss.getDataRegistrationState(), in verifyServiceStateWithPublicColumns()
360 final int dataRegState = ss.getDataRegistrationState(); in verifyServiceStateForSubId()
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/mobile/
H A DMobileStatusTracker.java135 + " dataState=" + (state == null ? "" : state.getDataRegistrationState())); in onServiceStateChanged()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DServiceStateTracker.java974 + " DataRegState=" + mNewSS.getDataRegistrationState()); in useDataRegStateForDataOnlyDevices()
977 mNewSS.setVoiceRegState(mNewSS.getDataRegistrationState()); in useDataRegStateForDataOnlyDevices()
1517 !isGprsConsistent(mSS.getDataRegistrationState(), mSS.getState())) { in handleMessage()
3325 return mSS.getDataRegistrationState(); in getCurrentDataConnectionState()
3342 && mSS.getDataRegistrationState() != ServiceState.STATE_IN_SERVICE) { in isConcurrentVoiceAndDataAllowed()
3662 has4gHandoff = mNewSS.getDataRegistrationState() == ServiceState.STATE_IN_SERVICE in pollStateDone()
3707 mSS.getState(), mSS.getDataRegistrationState(), in pollStateDone()
3708 mNewSS.getState(), mNewSS.getDataRegistrationState()); in pollStateDone()
3964 if (!isGprsConsistent(mSS.getDataRegistrationState(), mSS.getState())) { in pollStateDone()
4016 } else if (mSS.getDataRegistrationState() != ServiceState.STATE_IN_SERVICE) { in getOperatorNameFromEri()
[all …]
H A DCarrierServiceStateTracker.java196 || mSST.mSS.getDataRegistrationState() == ServiceState.STATE_IN_SERVICE); in isPhoneStillRegistered()
H A DImsSmsDispatcher.java306 getDataRegistrationState() == ServiceState.STATE_IN_SERVICE)); in isLteService()
H A DTelephonyTester.java402 log("Override data service state with " + ss.getDataRegistrationState()); in overrideServiceState()
/aosp12/packages/apps/Settings/src/com/android/settings/network/telephony/
H A DNetworkProviderWorker.java261 + " dataState=" + state.getDataRegistrationState()); in onServiceStateChanged()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
H A DDataCallSessionStats.java282 ? serviceState.getDataRegistrationState() == ServiceState.STATE_OUT_OF_SERVICE in getIsOos()
/aosp12/hardware/interfaces/radio/1.2/vts/functional/
H A Dradio_hidl_hal_api.cpp760 TEST_P(RadioHidlTest_v1_2, getDataRegistrationState) { in TEST_P() argument
763 Return<void> res = radio_v1_2->getDataRegistrationState(serial); in TEST_P()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java216 public void getDataRegistrationState (Message result) { in getDataRegistrationState() method in ImsPhoneCommandInterface
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java217 public void getDataRegistrationState (Message result) { in getDataRegistrationState() method in SipCommandInterface
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/
H A DUtils.java514 final int dataState = serviceState.getDataRegistrationState(); in getCombinedServiceState()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DCarrierTextManager.java333 if (ss != null && ss.getDataRegistrationState() == ServiceState.STATE_IN_SERVICE) { in updateCarrierText()
/aosp12/hardware/interfaces/radio/1.2/
H A DIRadio.hal143 * in the response of getDataRegistrationState.
/aosp12/hardware/interfaces/radio/1.2/default/
H A DRadio.cpp211 Return<void> Radio::getDataRegistrationState(int32_t /* serial */) { in getDataRegistrationState() function in android::hardware::radio::V1_2::implementation::Radio

123