Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/dialog/data/repository/
DVolumeDialogStateRepository.kt31 private val mutableState = MutableStateFlow(VolumeDialogStateModel()) constant in com.android.systemui.volume.dialog.data.repository.VolumeDialogStateRepository
32 val state: Flow<VolumeDialogStateModel> = mutableState.asStateFlow()
35 mutableState.update(update) in updateState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputQuickSettingsDisabler.kt52 var mutableState = state in adjustDisableFlags() variable
57 mutableState = state or StatusBarManager.DISABLE2_QUICK_SETTINGS in adjustDisableFlags()
59 return mutableState in adjustDisableFlags()
/frameworks/base/packages/SystemUI/src/com/android/systemui/lifecycle/
DHydrator.kt96 val mutableState = mutableStateOf(initialValue) in <lambda>() constant
119 mutableState.value = it in <lambda>()
126 return mutableState in <lambda>()
/frameworks/base/packages/SystemUI/utils/kairos/src/com/android/systemui/kairos/
DKairosNetwork.kt89 fun <T> KairosNetwork.mutableState(initialValue: T): MutableState<T> = in mutableState() method
95 network.mutableState(initialValue) in mutableState()