Home
last modified time | relevance | path

Searched refs:strongAuthReason (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/base/services/core/java/com/android/server/locksettings/
H A DLockSettingsStrongAuth.java187 private void handleRequireStrongAuth(int strongAuthReason, int userId) { in handleRequireStrongAuth() argument
191 handleRequireStrongAuthOneUser(strongAuthReason, key); in handleRequireStrongAuth()
194 handleRequireStrongAuthOneUser(strongAuthReason, userId); in handleRequireStrongAuth()
200 int newValue = strongAuthReason == STRONG_AUTH_NOT_REQUIRED in handleRequireStrongAuthOneUser()
202 : (oldValue | strongAuthReason); in handleRequireStrongAuthOneUser()
213 handleNoLongerRequireStrongAuthOneUser(strongAuthReason, key); in handleNoLongerRequireStrongAuth()
216 handleNoLongerRequireStrongAuthOneUser(strongAuthReason, userId); in handleNoLongerRequireStrongAuth()
222 int newValue = oldValue & ~strongAuthReason; in handleNoLongerRequireStrongAuthOneUser()
408 strongAuthReason, userId); in notifyStrongAuthTrackers()
454 public void requireStrongAuth(int strongAuthReason, int userId) { in requireStrongAuth() argument
[all …]
H A DLockSettingsService.java2528 public void requireStrongAuth(int strongAuthReason, int userId) { in requireStrongAuth() argument
2530 mStrongAuth.requireStrongAuth(strongAuthReason, userId); in requireStrongAuth()
/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DILockSettings.aidl61 void requireStrongAuth(int strongAuthReason, int userId); in requireStrongAuth() argument
H A DLockPatternUtils.java1194 public void requireStrongAuth(@StrongAuthTracker.StrongAuthFlags int strongAuthReason, in requireStrongAuth() argument
1197 getLockSettings().requireStrongAuth(strongAuthReason, userId); in requireStrongAuth()