Home
last modified time | relevance | path

Searched refs:_challenge (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/biometrics/data/repository/
DFakePromptRepository.kt23 private var _challenge = MutableStateFlow<Long?>(null) variable
24 override val challenge = _challenge.asStateFlow()
65 _challenge.value = gatekeeperChallenge in setPrompt()
75 _challenge.value = null in unsetPrompt()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/data/repository/
DPromptRepository.kt111 private val _challenge: MutableStateFlow<Long?> = MutableStateFlow(null) constant in com.android.systemui.biometrics.data.repository.PromptRepositoryImpl
112 override val challenge: StateFlow<Long?> = _challenge.asStateFlow()
151 _challenge.value = gatekeeperChallenge in appRequiresConfirmation()
161 _challenge.value = null in unsetPrompt()