Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractor.kt169 val failedAttemptsBeforeWipe = repository.getMaxFailedUnlockAttemptsForWipe() in <lambda>() constant
170 if (failedAttemptsBeforeWipe == 0) { in <lambda>()
177 val remainingAttemptsBeforeWipe = max(0, failedAttemptsBeforeWipe - failedAttempts) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainerController.java1113 final int failedAttemptsBeforeWipe = in reportFailedUnlockAttempt() local
1116 final int remainingBeforeWipe = failedAttemptsBeforeWipe > 0 in reportFailedUnlockAttempt()
1117 ? (failedAttemptsBeforeWipe - failedAttempts) in reportFailedUnlockAttempt()