Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/keyguard/data/repository/
H A DFakeBiometricSettingsRepository.kt21 import com.android.systemui.keyguard.shared.model.AuthenticationFlags
51 private val _authFlags = MutableStateFlow(AuthenticationFlags(0, 0))
52 override val authenticationFlags: Flow<AuthenticationFlags>
55 fun setAuthenticationFlags(value: AuthenticationFlags) {
84 AuthenticationFlags(
92 AuthenticationFlags(
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
H A DBiometricSettingsRepository.kt41 import com.android.systemui.keyguard.shared.model.AuthenticationFlags
114 val authenticationFlags: Flow<AuthenticationFlags>
148 override val authenticationFlags: Flow<AuthenticationFlags> =
368 MutableStateFlow(AuthenticationFlags(currentUserId, getStrongAuthForUser(currentUserId)))
376 val currentUserAuthFlags: Flow<AuthenticationFlags> =
379 .map { AuthenticationFlags(userId, getStrongAuthForUser(userId)) }
381 .onStart { emit(AuthenticationFlags(userId, getStrongAuthForUser(userId))) }
407 _authFlags.value = AuthenticationFlags(userId, newFlags)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/shared/model/
H A DAuthenticationFlags.kt22 data class AuthenticationFlags(val userId: Int, val flag: Int) { dataClass
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bouncer/data/repo/
H A DBouncerMessageRepositoryTest.kt58 import com.android.systemui.keyguard.shared.model.AuthenticationFlags
353 AuthenticationFlags(PRIMARY_USER_ID, flag)