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.java425 final int failedAttempts = mLockPatternUtils.getCurrentFailedPasswordAttempts(userId) + 1; in reportFailedUnlockAttempt() local
427 if (DEBUG) Log.d(TAG, "reportFailedPatternAttempt: #" + failedAttempts); in reportFailedUnlockAttempt()
434 (failedAttemptsBeforeWipe - failedAttempts) in reportFailedUnlockAttempt()
452 showAlmostAtWipeDialog(failedAttempts, remainingBeforeWipe, userType); in reportFailedUnlockAttempt()
456 showWipeDialog(failedAttempts, userType); in reportFailedUnlockAttempt()
/frameworks/base/services/core/java/com/android/server/biometrics/fingerprint/
DFingerprintService.java893 final int failedAttempts = mFailedAttempts.get(currentUser, 0); in getLockoutMode() local
894 if (failedAttempts >= MAX_FAILED_ATTEMPTS_LOCKOUT_PERMANENT) { in getLockoutMode()
896 } else if (failedAttempts > 0 in getLockoutMode()
898 && (failedAttempts % MAX_FAILED_ATTEMPTS_LOCKOUT_TIMED == 0)) { in getLockoutMode()