Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/hidl/
H A DLockoutFrameworkImpl.java118 final int failedAttempts = mFailedAttempts.get(userId, 0); in getLockoutModeForUser() local
119 if (failedAttempts >= MAX_FAILED_ATTEMPTS_LOCKOUT_PERMANENT) { in getLockoutModeForUser()
121 } else if (failedAttempts > 0 in getLockoutModeForUser()
123 && (failedAttempts % MAX_FAILED_ATTEMPTS_LOCKOUT_TIMED == 0)) { in getLockoutModeForUser()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSecurityContainerController.java1090 final int failedAttempts = mLockPatternUtils.getCurrentFailedPasswordAttempts(userId) + 1; in reportFailedUnlockAttempt() local
1092 if (DEBUG) Log.d(TAG, "reportFailedPatternAttempt: #" + failedAttempts); in reportFailedUnlockAttempt()
1099 ? (failedAttemptsBeforeWipe - failedAttempts) in reportFailedUnlockAttempt()
1117 mView.showAlmostAtWipeDialog(failedAttempts, remainingBeforeWipe, userType); in reportFailedUnlockAttempt()
1121 mView.showWipeDialog(failedAttempts, userType); in reportFailedUnlockAttempt()