Home
last modified time | relevance | path

Searched refs:strongAuth (Results 1 – 13 of 13) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DViewMediatorCallback.java36 void keyguardDone(boolean strongAuth, int targetUserId); in keyguardDone() argument
56 void keyguardDonePending(boolean strongAuth, int targetUserId); in keyguardDonePending() argument
H A DKeyguardHostViewController.java133 public void finish(boolean strongAuth, int targetUserId) {
144 mViewMediatorCallback.keyguardDonePending(strongAuth, targetUserId);
146 mViewMediatorCallback.keyguardDone(strongAuth, targetUserId);
472 public void finish(boolean strongAuth, int currentUser) { in finish() argument
473 mSecurityCallback.finish(strongAuth, currentUser); in finish()
H A DKeyguardViewController.java166 void notifyKeyguardAuthenticated(boolean strongAuth); in notifyKeyguardAuthenticated() argument
H A DKeyguardSecurityContainerController.java377 boolean strongAuth = false; in showNextSecurityScreenOrFinish()
402 strongAuth = true; in showNextSecurityScreenOrFinish()
446 mSecurityCallback.finish(strongAuth, targetUserId); in showNextSecurityScreenOrFinish()
H A DKeyguardUpdateMonitor.java1257 final int strongAuth = mStrongAuthTracker.getStrongAuthForUser(userId); in isEncryptedOrLockdown() local
1259 containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW) in isEncryptedOrLockdown()
1260 || containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_USER_LOCKDOWN); in isEncryptedOrLockdown()
1261 final boolean isEncrypted = containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_BOOT); in isEncryptedOrLockdown()
2357 final int strongAuth = mStrongAuthTracker.getStrongAuthForUser(user); in shouldListenForFace() local
2359 containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW) in shouldListenForFace()
2360 || containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_USER_LOCKDOWN); in shouldListenForFace()
2362 containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_BOOT) in shouldListenForFace()
2363 || containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_TIMEOUT); in shouldListenForFace()
H A DKeyguardSecurityContainer.java195 void finish(boolean strongAuth, int targetUserId); in finish() argument
/aosp12/frameworks/base/services/core/java/com/android/server/biometrics/
H A DUtils.java486 final int strongAuth = lpu.getStrongAuthForUser(user); in isUserEncryptedOrLockdown() local
487 final boolean isEncrypted = containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_BOOT); in isUserEncryptedOrLockdown()
488 final boolean isLockDown = containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW) in isUserEncryptedOrLockdown()
489 || containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_USER_LOCKDOWN); in isUserEncryptedOrLockdown()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java690 public void keyguardDone(boolean strongAuth, int targetUserId) {
711 public void keyguardDonePending(boolean strongAuth, int targetUserId) {
786 int strongAuth = strongAuthTracker.getStrongAuthForUser(currentUser);
790 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_TIMEOUT) != 0) {
792 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW) != 0) {
794 } else if (trust && (strongAuth & SOME_AUTH_REQUIRED_AFTER_USER_REQUEST) != 0) {
796 } else if (any && ((strongAuth & STRONG_AUTH_REQUIRED_AFTER_LOCKOUT) != 0
799 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_FOR_UNATTENDED_UPDATE) != 0) {
801 } else if (any && (strongAuth
/aosp12/packages/apps/Car/SystemUI/src/com/android/systemui/car/keyguard/
H A DCarKeyguardViewController.java175 public void notifyKeyguardAuthenticated(boolean strongAuth) { in notifyKeyguardAuthenticated() argument
177 mBouncer.notifyKeyguardAuthenticated(strongAuth); in notifyKeyguardAuthenticated()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardBouncer.java543 public void notifyKeyguardAuthenticated(boolean strongAuth) { in notifyKeyguardAuthenticated() argument
545 mKeyguardViewController.finish(strongAuth, KeyguardUpdateMonitor.getCurrentUser()); in notifyKeyguardAuthenticated()
H A DStatusBarKeyguardViewManager.java1142 public void notifyKeyguardAuthenticated(boolean strongAuth) { in notifyKeyguardAuthenticated() argument
1143 mBouncer.notifyKeyguardAuthenticated(strongAuth); in notifyKeyguardAuthenticated()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DKeyguardUpdateMonitorTest.java499 private void testFingerprintWhenStrongAuth(int strongAuth) { in testFingerprintWhenStrongAuth() argument
505 when(mStrongAuthTracker.getStrongAuthForUser(anyInt())).thenReturn(strongAuth); in testFingerprintWhenStrongAuth()
566 private void testStrongAuthExceptOnBouncer(int strongAuth) { in testStrongAuthExceptOnBouncer() argument
569 when(mStrongAuthTracker.getStrongAuthForUser(anyInt())).thenReturn(strongAuth); in testStrongAuthExceptOnBouncer()
/aosp12/frameworks/base/services/core/java/com/android/server/locksettings/
H A DLockSettingsService.java323 void register(LockSettingsStrongAuth strongAuth) { in register() argument
324 strongAuth.registerStrongAuthTracker(getStub()); in register()