HomeSort by relevance Sort by last modified time
    Searched refs:failedAttempts (Results 1 - 3 of 3) sorted by null

  /frameworks/base/services/java/com/android/server/pm/
UserManagerService.java 89 private static final String ATTR_FAILED_ATTEMPTS = "failedAttempts";
145 int failedAttempts;
652 if (pinState.failedAttempts != 0) {
654 Integer.toString(pinState.failedAttempts));
747 int failedAttempts = 0;
783 failedAttempts = readIntAttribute(parser, ATTR_FAILED_ATTEMPTS, 0);
832 pinState.failedAttempts = failedAttempts;
    [all...]
  /packages/apps/Settings/src/com/android/settings/
CryptKeeper.java 158 protected void onPostExecute(Integer failedAttempts) {
159 if (failedAttempts == 0) {
167 } else if (failedAttempts == MAX_FAILED_ATTEMPTS) {
170 } else if ((failedAttempts % COOL_DOWN_ATTEMPTS) == 0) {
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardHostView.java 676 final int failedAttempts = monitor.getFailedUnlockAttempts() + 1; // +1 for this time
678 if (DEBUG) Log.d(TAG, "reportFailedPatternAttempt: #" + failedAttempts);
690 (failedAttemptsBeforeWipe - failedAttempts)
700 showAlmostAtWipeDialog(failedAttempts, remainingBeforeWipe);
704 showWipeDialog(failedAttempts);
708 (failedAttempts % LockPatternUtils.FAILED_ATTEMPTS_BEFORE_TIMEOUT) == 0;
710 if (failedAttempts == failedAttemptWarning) {
713 } else if (failedAttempts >= LockPatternUtils.FAILED_ATTEMPTS_BEFORE_RESET) {
    [all...]

Completed in 283 milliseconds