Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainer.java418 final int failedAttempts = mLockPatternUtils.getCurrentFailedPasswordAttempts(userId) + 1; in reportFailedUnlockAttempt() local
420 if (DEBUG) Log.d(TAG, "reportFailedPatternAttempt: #" + failedAttempts); in reportFailedUnlockAttempt()
427 (failedAttemptsBeforeWipe - failedAttempts) in reportFailedUnlockAttempt()
445 showAlmostAtWipeDialog(failedAttempts, remainingBeforeWipe, userType); in reportFailedUnlockAttempt()
449 showWipeDialog(failedAttempts, userType); in reportFailedUnlockAttempt()
/frameworks/base/services/core/java/com/android/server/biometrics/fingerprint/
DFingerprintService.java891 final int failedAttempts = mFailedAttempts.get(currentUser, 0); in getLockoutMode() local
892 if (failedAttempts >= MAX_FAILED_ATTEMPTS_LOCKOUT_PERMANENT) { in getLockoutMode()
894 } else if (failedAttempts > 0 in getLockoutMode()
896 && (failedAttempts % MAX_FAILED_ATTEMPTS_LOCKOUT_TIMED == 0)) { in getLockoutMode()