Home
last modified time | relevance | path

Searched refs:networkTypeIcon (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/
DMobileIconViewModelTest.kt364 val job = underTest.networkTypeIcon.onEach { latest = it }.launchIn(this) in networkType_dataEnabled_groupIsRepresented()
378 val job = underTest.networkTypeIcon.onEach { latest = it }.launchIn(this) in networkType_null_whenDisabled()
392 val job = underTest.networkTypeIcon.onEach { latest = it }.launchIn(this) in networkType_null_whenCarrierNetworkChangeActive()
412 val job = underTest.networkTypeIcon.onEach { latest = it }.launchIn(this) in networkTypeIcon_notNull_whenEnabled()
430 val job = underTest.networkTypeIcon.onEach { latest = it }.launchIn(this) in networkType_nullWhenDataDisconnects()
451 val job = underTest.networkTypeIcon.onEach { latest = it }.launchIn(this) in networkType_null_changeToDisabled()
471 val job = underTest.networkTypeIcon.onEach { latest = it }.launchIn(this) in networkType_alwaysShow_shownEvenWhenDisabled()
493 val job = underTest.networkTypeIcon.onEach { latest = it }.launchIn(this) in networkType_alwaysShow_shownEvenWhenDisconnected()
514 val job = underTest.networkTypeIcon.onEach { latest = it }.launchIn(this) in networkType_alwaysShow_shownEvenWhenFailedConnection()
536 val job = underTest.networkTypeIcon.onEach { latest = it }.launchIn(this) in networkType_alwaysShow_usesDefaultIconWhenInvalid()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/
DMobileIconViewModel.kt56 val networkTypeIcon: Flow<Icon.Resource?> in <lambda>() constant
131 override val networkTypeIcon: Flow<Icon.Resource?> = constant
132 vmProvider.flatMapLatest { it.networkTypeIcon } in <lambda>()
162 override val networkTypeIcon: Flow<Icon.Resource?> = flowOf(null) constant
250 override val networkTypeIcon: Flow<Icon.Resource?> = constant
DMobileIconsViewModel.kt92 firstMobileSubViewModel?.networkTypeIcon?.map { it != null } ?: flowOf(false) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/ui/binder/
DMobileIconBinder.kt161 viewModel.networkTypeIcon.distinctUntilChanged().collect { dataTypeId -> in <lambda>()