Home | History | Annotate | Download | only in keyguard

Lines Matching refs:userId

188     private void showTimeoutDialog(int userId, int timeoutMs) {
192 switch (mSecurityModel.getSecurityMode(userId)) {
212 KeyguardUpdateMonitor.getInstance(mContext).getFailedUnlockAttempts(userId),
256 private void reportFailedUnlockAttempt(int userId, int timeoutMs) {
258 final int failedAttempts = monitor.getFailedUnlockAttempts(userId) + 1; // +1 for this time
264 dpm.getMaximumFailedPasswordsForWipe(null, userId);
274 final int expiringUser = dpm.getProfileWithMinimumFailedPasswordsForWipe(userId);
276 if (expiringUser == userId) {
292 monitor.reportFailedStrongAuthUnlockAttempt(userId);
293 mLockPatternUtils.reportFailedPasswordAttempt(userId);
295 mLockPatternUtils.reportPasswordLockout(timeoutMs, userId);
296 showTimeoutDialog(userId, timeoutMs);
431 public void reportUnlockAttempt(int userId, boolean success, int timeoutMs) {
437 mLockPatternUtils.reportSuccessfulPasswordAttempt(userId);
441 KeyguardSecurityContainer.this.reportFailedUnlockAttempt(userId, timeoutMs);
457 public void reportUnlockAttempt(int userId, boolean success, int timeoutMs) { }