Searched defs:strongAuthReason (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/locksettings/
H A DLockSettingsStrongAuth.java98 private void handleRequireStrongAuth(int strongAuthReason, int userId) { argument
102 handleRequireStrongAuthOneUser(strongAuthReason, key);
105 handleRequireStrongAuthOneUser(strongAuthReason, userId);
109 private void handleRequireStrongAuthOneUser(int strongAuthReason, int userId) { argument
111 int newValue = strongAuthReason == STRONG_AUTH_NOT_REQUIRED
113 : (oldValue | strongAuthReason);
145 private void notifyStrongAuthTrackers(int strongAuthReason, int userId) { argument
152 strongAuthReason, userId);
175 public void requireStrongAuth(int strongAuthReason, int userId) { argument
177 mHandler.obtainMessage(MSG_REQUIRE_STRONG_AUTH, strongAuthReason,
[all...]
H A DLockSettingsService.java1974 public void requireStrongAuth(int strongAuthReason, int userId) { argument
1976 mStrongAuth.requireStrongAuth(strongAuthReason, userId);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java1439 * @param strongAuthReason a combination of {@link StrongAuthTracker.StrongAuthFlags} indicating
1443 public void requireStrongAuth(@StrongAuthTracker.StrongAuthFlags int strongAuthReason, argument
1446 getLockSettings().requireStrongAuth(strongAuthReason, userId);

Completed in 1133 milliseconds