Home
last modified time | relevance | path

Searched refs:Inactive (Results 1 – 25 of 36) sorted by relevance

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/shortcut/data/repository/
DShortcutHelperRepository.kt29 import com.android.systemui.keyboard.shortcut.shared.model.ShortcutHelperState.Inactive
42 val state = MutableStateFlow<ShortcutHelperState>(Inactive)
51 onReceive = { state.value = Inactive } in start()
55 onReceive = { state.value = Inactive } in start()
60 state.value = Inactive in start()
65 if (state.value is Inactive) { in start()
68 Inactive in start()
76 state.value = Inactive in hide()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/wifi/ui/viewmodel/
DWifiViewModelIconParameterizedTest.kt213 network = WifiNetworkModel.Inactive, in <lambda>()
236 network = WifiNetworkModel.Inactive, in <lambda>()
253 network = WifiNetworkModel.Inactive, in <lambda>()
293 network = WifiNetworkModel.Inactive, in <lambda>()
333 network = WifiNetworkModel.Inactive, in <lambda>()
383 network = WifiNetworkModel.Inactive, in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/wifi/shared/model/
DWifiNetworkModelTest.kt102 WifiNetworkModel.Inactive.logDiffs(prevVal, logger) in <lambda>()
121 carrierMerged.logDiffs(prevVal = WifiNetworkModel.Inactive, logger) in <lambda>()
143 activeNetwork.logDiffs(prevVal = WifiNetworkModel.Inactive, logger) in <lambda>()
163 WifiNetworkModel.Inactive.logDiffs(prevVal = activeNetwork, logger) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/shared/quickaffordance/
DActivationState.kt27 object Inactive : ActivationState() object in com.android.systemui.keyguard.shared.quickaffordance.ActivationState
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/shortcut/shared/model/
DShortcutHelperState.kt20 data object Inactive : ShortcutHelperState object
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/tiles/impl/internet/domain/interactor/
DInternetTileUserActionInteractorTest.kt83 val input = InternetTileModel.Inactive() in handleClickWhenInactive()
105 val input = InternetTileModel.Inactive() in handleLongClickWhenInactive()
DInternetTileDataInteractorTest.kt403 val networkModel = WifiNetworkModel.Inactive in <lambda>()
421 val networkModel = WifiNetworkModel.Inactive in <lambda>()
564 InternetTileModel.Inactive( in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/data/repository/demo/
DDemoWifiRepository.kt49 private val _wifiNetwork = MutableStateFlow<WifiNetworkModel>(WifiNetworkModel.Inactive) in <lambda>()
85 _wifiNetwork.value = WifiNetworkModel.Inactive in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/shared/ui/viewmodel/
DInternetTileViewModel.kt203 InternetTileModel.Inactive( in <lambda>()
213 InternetTileModel.Inactive( in <lambda>()
248 InternetTileModel.Inactive( in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/impl/internet/domain/model/
DInternetTileModel.kt41 data class Inactive( dataClass
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/impl/internet/domain/interactor/
DInternetTileDataInteractor.kt217 InternetTileModel.Inactive( in <lambda>()
227 InternetTileModel.Inactive( in <lambda>()
265 InternetTileModel.Inactive( in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/pipeline/wifi/domain/interactor/
DWifiInteractorImplTest.kt81 wifiRepository.setWifiNetwork(WifiNetworkModel.Inactive) in ssid_inactiveNetwork_outputsNull()
312 wifiRepository.setWifiNetwork(WifiNetworkModel.Inactive) in areNetworksAvailable_noneActive_noResults()
329 wifiRepository.setWifiNetwork(WifiNetworkModel.Inactive) in areNetworksAvailable_noneActive_nonEmptyResults()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/pipeline/wifi/data/repository/
DFakeWifiRepository.kt35 MutableStateFlow(WifiNetworkModel.Inactive)
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/data/repository/prod/
DWifiRepositoryImpl.kt48 import com.android.systemui.statusbar.pipeline.wifi.shared.model.WifiNetworkModel.Inactive.toHotspo… in <lambda>()
276 return WifiNetworkModel.Inactive in <lambda>()
435 @VisibleForTesting val WIFI_NETWORK_DEFAULT = WifiNetworkModel.Inactive in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/wifi/data/repository/prod/
DWifiRepositoryImplTest.kt325 assertThat(latest).isEqualTo(WifiNetworkModel.Inactive) in wifiNetwork_unreachableLevel_inactiveNetwork()
341 assertThat(latest).isEqualTo(WifiNetworkModel.Inactive) in wifiNetwork_levelTooHigh_inactiveNetwork()
357 assertThat(latest).isEqualTo(WifiNetworkModel.Inactive) in wifiNetwork_levelTooLow_inactiveNetwork()
626 assertThat(latest).isEqualTo(WifiNetworkModel.Inactive) in wifiNetwork_nonPrimaryWifiNetworkAdded_flowHasNoNetwork()
642 assertThat(latest).isEqualTo(WifiNetworkModel.Inactive) in wifiNetwork_nonPrimaryCarrierMergedNetworkAdded_flowHasNoNetwork()
692 assertThat(latest is WifiNetworkModel.Inactive).isTrue() in wifiNetwork_noCurrentNetwork_networkLost_flowHasNoNetwork()
715 assertThat(latest is WifiNetworkModel.Inactive).isTrue() in wifiNetwork_currentActiveNetworkLost_flowHasNoNetwork()
743 assertThat(latest is WifiNetworkModel.Inactive).isTrue() in wifiNetwork_currentCarrierMergedNetworkLost_flowHasNoNetwork()
881 assertThat(latest!![0]).isInstanceOf(WifiNetworkModel.Inactive::class.java) in secondaryNetworks_mapsToInactive()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/shared/ui/model/
DInternetTileModel.kt73 data class Inactive( class
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/shared/model/
DWifiNetworkModel.kt97 object Inactive : WifiNetworkModel() { object
101 if (prevVal is Inactive) { in toString()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/domain/interactor/
DWifiInteractor.kt82 is WifiNetworkModel.Inactive -> null in info()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/quickaffordance/
DFlashlightQuickAffordanceConfig.kt65 ActivationState.Inactive in toLockScreenState()
DMuteQuickAffordanceConfig.kt90 else -> ActivationState.Inactive to R.string.volume_ringer_hint_unmute in <lambda>()
DDoNotDisturbQuickAffordanceConfig.kt185 ActivationState.Inactive, in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/ui/model/
DWifiIcon.kt85 is WifiNetworkModel.Inactive -> in fromModel()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/tiles/impl/internet/domain/
DInternetTileMapperTest.kt82 InternetTileModel.Inactive( in withInactiveModel_mappedStateMatchesDataModel()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/shared/ui/viewmodel/
DInternetTileViewModelTest.kt294 val networkModel = WifiNetworkModel.Inactive in wifiDefaultAndNotActive_noNetworksAvailable()
309 val networkModel = WifiNetworkModel.Inactive in wifiDefaultAndNotActive_networksAvailable()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/data/quickaffordance/
DFlashlightQuickAffordanceConfigTest.kt187 is ActivationState.Inactive in <lambda>()

12