Home
last modified time | relevance | path

Searched refs:failedAttempts (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/hidl/
DLockoutFrameworkImpl.java147 final int failedAttempts = mFailedAttempts.get(userId, 0); in getLockoutModeForUser() local
148 if (failedAttempts >= MAX_FAILED_ATTEMPTS_LOCKOUT_PERMANENT) { in getLockoutModeForUser()
150 } else if (failedAttempts > 0 in getLockoutModeForUser()
152 && (failedAttempts % MAX_FAILED_ATTEMPTS_LOCKOUT_TIMED == 0)) { in getLockoutModeForUser()
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractor.kt168 repository.failedAuthenticationAttempts.map { failedAttempts -> in <lambda>() method
177 val remainingAttemptsBeforeWipe = max(0, failedAttemptsBeforeWipe - failedAttempts) in <lambda>()
184 failedAttempts = failedAttempts, in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/shared/model/
DAuthenticationWipeModel.kt32 val failedAttempts: Int, constant in com.android.systemui.authentication.shared.model.AuthenticationWipeModel
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/viewmodel/
DBouncerViewModel.kt321 failedAttempts, in <lambda>()
329 failedAttempts, in <lambda>()
342 val message = applicationContext.getString(wipeTarget.messageIdForWipe, failedAttempts) in <lambda>()
348 failedAttempts, in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainerController.java1109 final int failedAttempts = mLockPatternUtils.getCurrentFailedPasswordAttempts(userId) + 1; in reportFailedUnlockAttempt() local
1111 if (DEBUG) Log.d(TAG, "reportFailedPatternAttempt: #" + failedAttempts); in reportFailedUnlockAttempt()
1117 ? (failedAttemptsBeforeWipe - failedAttempts) in reportFailedUnlockAttempt()
1129 userId, expiringUser, mainUser, remainingBeforeWipe, failedAttempts); in reportFailedUnlockAttempt()
1143 int remainingBeforeWipe, int failedAttempts) { in showMessageForFailedUnlockAttempt() argument
1160 mView.showAlmostAtWipeDialog(failedAttempts, remainingBeforeWipe, in showMessageForFailedUnlockAttempt()
1166 mView.showWipeDialog(failedAttempts, userType); in showMessageForFailedUnlockAttempt()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/authentication/data/repository/
DFakeAuthenticationRepository.kt145 val failedAttempts = _failedAuthenticationAttempts.value in <lambda>() constant
146 if (isSuccessful || failedAttempts < MAX_FAILED_AUTH_TRIES_BEFORE_LOCKOUT - 1) { in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractorTest.kt457 failedAttempts = expectedFailedAttempts, in <lambda>()