Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/
H A DLockSettingsStrongAuth.java190 private void handleRequireStrongAuth(int strongAuthReason, int userId) { in handleRequireStrongAuth() argument
194 handleRequireStrongAuthOneUser(strongAuthReason, key); in handleRequireStrongAuth()
197 handleRequireStrongAuthOneUser(strongAuthReason, userId); in handleRequireStrongAuth()
203 int newValue = strongAuthReason == STRONG_AUTH_NOT_REQUIRED in handleRequireStrongAuthOneUser()
205 : (oldValue | strongAuthReason); in handleRequireStrongAuthOneUser()
216 handleNoLongerRequireStrongAuthOneUser(strongAuthReason, key); in handleNoLongerRequireStrongAuth()
219 handleNoLongerRequireStrongAuthOneUser(strongAuthReason, userId); in handleNoLongerRequireStrongAuth()
225 int newValue = oldValue & ~strongAuthReason; in handleNoLongerRequireStrongAuthOneUser()
412 strongAuthReason, userId); in notifyStrongAuthTrackers()
458 public void requireStrongAuth(int strongAuthReason, int userId) { in requireStrongAuth() argument
[all …]
H A DLockSettingsShellCommand.java285 int strongAuthReason; in runRequireStrongAuth() local
288 strongAuthReason = STRONG_AUTH_REQUIRED_AFTER_USER_LOCKDOWN; in runRequireStrongAuth()
295 mLockPatternUtils.requireStrongAuth(strongAuthReason, mCurrentUserId); in runRequireStrongAuth()
H A DLockSettingsService.java2419 public void requireStrongAuth(int strongAuthReason, int userId) { in requireStrongAuth() argument
2421 mStrongAuth.requireStrongAuth(strongAuthReason, userId); in requireStrongAuth()
/aosp14/frameworks/base/core/java/com/android/internal/widget/
H A DILockSettings.aidl66 void requireStrongAuth(int strongAuthReason, int userId); in requireStrongAuth() argument
H A DLockPatternUtils.java1297 public void requireStrongAuth(@StrongAuthTracker.StrongAuthFlags int strongAuthReason, in requireStrongAuth() argument
1300 getLockSettings().requireStrongAuth(strongAuthReason, userId); in requireStrongAuth()