Searched defs:getStrongAuthForUser (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsService.java204 public int getStrongAuthForUser(int userId) { method in class:LockSettingsService.SynchronizedStrongAuthTracker
206 return super.getStrongAuthForUser(userId);
1530 public int getStrongAuthForUser(int userId) { method in class:LockSettingsService
1532 return mStrongAuthTracker.getStrongAuthForUser(userId);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java1453 * @see StrongAuthTracker#getStrongAuthForUser
1455 public int getStrongAuthForUser(int userId) { method in class:LockPatternUtils
1457 return getLockSettings().getStrongAuthForUser(userId);
1468 return getStrongAuthForUser(userId) == StrongAuthTracker.STRONG_AUTH_NOT_REQUIRED;
1475 return (getStrongAuthForUser(userId) & ~StrongAuthTracker.ALLOWING_FINGERPRINT) == 0;
1557 public @StrongAuthFlags int getStrongAuthForUser(int userId) { method in class:LockPatternUtils.StrongAuthTracker
1566 return getStrongAuthForUser(userId) == STRONG_AUTH_NOT_REQUIRED;
1574 return (getStrongAuthForUser(userId) & ~ALLOWING_FINGERPRINT) == 0;
1585 int oldValue = getStrongAuthForUser(userId);

Completed in 28 milliseconds