Searched refs:AuthenticationFlags (Results 1 – 4 of 4) sorted by relevance
21 import com.android.systemui.keyguard.shared.model.AuthenticationFlags51 private val _authFlags = MutableStateFlow(AuthenticationFlags(0, 0))52 override val authenticationFlags: Flow<AuthenticationFlags>55 fun setAuthenticationFlags(value: AuthenticationFlags) {84 AuthenticationFlags(92 AuthenticationFlags(
41 import com.android.systemui.keyguard.shared.model.AuthenticationFlags114 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)
22 data class AuthenticationFlags(val userId: Int, val flag: Int) { dataClass
58 import com.android.systemui.keyguard.shared.model.AuthenticationFlags353 AuthenticationFlags(PRIMARY_USER_ID, flag)