Home
last modified time | relevance | path

Searched refs:AuthenticationResultModel (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/data/repository/
DAuthenticationRepository.kt34 import com.android.systemui.authentication.shared.model.AuthenticationResultModel in <lambda>()
135 suspend fun checkCredential(credential: LockscreenCredential): AuthenticationResultModel in <lambda>()
270 ): AuthenticationResultModel { in checkCredential()
274 AuthenticationResultModel(isSuccessful = matched, lockoutDurationMs = 0) in checkCredential()
276 AuthenticationResultModel(isSuccessful = false, lockoutDurationMs = ex.timeoutMs) in checkCredential()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/authentication/data/repository/
DFakeAuthenticationRepository.kt26 import com.android.systemui.authentication.shared.model.AuthenticationResultModel in <lambda>()
130 ): AuthenticationResultModel { in <lambda>()
147 AuthenticationResultModel( in <lambda>()
152 AuthenticationResultModel( in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/shared/model/
DAuthenticationResultModel.kt20 data class AuthenticationResultModel( dataClass