/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/ |
D | FullMobileConnectionRepository.kt | 285 override val dataEnabled = in <lambda>() constant 287 .flatMapLatest { it.dataEnabled } in <lambda>() 292 initialValue = activeRepo.value.dataEnabled.value, in <lambda>() 294 .stateIn(scope, SharingStarted.WhileSubscribed(), activeRepo.value.dataEnabled.value) in <lambda>()
|
D | CarrierMergedConnectionRepository.kt | 191 override val dataEnabled: StateFlow<Boolean> = wifiRepository.isWifiEnabled in <lambda>() constant in com.android.systemui.statusbar.pipeline.mobile.data.repository.prod.CarrierMergedConnectionRepository
|
D | MobileConnectionRepositoryImpl.kt | 409 override val dataEnabled = run { in <lambda>() constant
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/demo/ |
D | DemoMobileConnectionRepository.kt | 220 override val dataEnabled = MutableStateFlow(true) in <lambda>() constant in com.android.systemui.statusbar.pipeline.mobile.data.repository.demo.DemoMobileConnectionRepository 245 dataEnabled.value = true in <lambda>() 277 dataEnabled.value = true in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/ |
D | MobileConnectionRepository.kt | 129 val dataEnabled: StateFlow<Boolean> constant
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/ |
D | FakeMobileConnectionRepository.kt | 54 override val dataEnabled = _dataEnabled constant in com.android.systemui.statusbar.pipeline.mobile.data.repository.FakeMobileConnectionRepository
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/ |
D | MobileIconViewModel.kt | 237 ) { dataConnected, dataEnabled, alwaysShow, mobileIsDefault, carrierNetworkChange -> in dataConnected() method 239 (!carrierNetworkChange && (dataEnabled && dataConnected && mobileIsDefault)) in dataConnected()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/ |
D | MobileIconViewModelTest.kt | 111 dataEnabled.value = true in setUp() 449 repository.dataEnabled.value = true in networkType_null_changeToDisabled() 455 repository.dataEnabled.value = false in networkType_null_changeToDisabled() 465 repository.dataEnabled.value = false in networkType_alwaysShow_shownEvenWhenDisabled()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/ |
D | MobileConnectionRepositoryTest.kt | 542 assertThat(underTest.dataEnabled.value).isFalse() in dataEnabled_initial_false() 549 val job = underTest.dataEnabled.onEach { latest = it }.launchIn(this) in isDataEnabled_tracksTelephonyCallback() 552 assertThat(underTest.dataEnabled.value).isFalse() in isDataEnabled_tracksTelephonyCallback()
|
D | MobileConnectionTelephonySmokeTests.kt | 250 val job = underTest.dataEnabled.onEach { latest = it }.launchIn(this) in <lambda>()
|
D | CarrierMergedConnectionRepositoryTest.kt | 265 val job = underTest.dataEnabled.onEach { latest = it }.launchIn(this) in dataEnabled_matchesWifiEnabled()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/domain/interactor/ |
D | MobileIconInteractor.kt | 158 override val isDataEnabled: StateFlow<Boolean> = connectionRepository.dataEnabled
|
D | MobileIconsInteractor.kt | 165 .flatMapLatest { it?.dataEnabled ?: flowOf(false) } in <lambda>()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/data/ |
D | PhoneSwitcherTest.java | 1958 private void notifyDataEnabled(boolean dataEnabled) { in notifyDataEnabled() argument 1960 doReturn(dataEnabled).when(mDataSettingsManager).isDataEnabled(); in notifyDataEnabled() 1961 doReturn(dataEnabled).when(mDataSettingsManager2).isDataEnabled(); in notifyDataEnabled() 1962 mDataSettingsManagerCallbacks.get(0).onDataEnabledChanged(dataEnabled, 123 , ""); in notifyDataEnabled() 1964 mDataSettingsManagerCallbacks.get(1).onDataEnabledChanged(dataEnabled, 123, ""); in notifyDataEnabled()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/shared/ui/viewmodel/ |
D | InternetTileViewModelTest.kt | 94 dataEnabled.value = true in setUp()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/tiles/impl/internet/domain/interactor/ |
D | InternetTileDataInteractorTest.kt | 110 dataEnabled.value = true in <lambda>()
|