/aosp12/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
H A D | ViewMediatorCallback.java | 36 void keyguardDone(boolean strongAuth, int targetUserId); in keyguardDone() argument 56 void keyguardDonePending(boolean strongAuth, int targetUserId); in keyguardDonePending() argument
|
H A D | KeyguardHostViewController.java | 133 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 D | KeyguardViewController.java | 166 void notifyKeyguardAuthenticated(boolean strongAuth); in notifyKeyguardAuthenticated() argument
|
H A D | KeyguardSecurityContainerController.java | 377 boolean strongAuth = false; in showNextSecurityScreenOrFinish() 402 strongAuth = true; in showNextSecurityScreenOrFinish() 446 mSecurityCallback.finish(strongAuth, targetUserId); in showNextSecurityScreenOrFinish()
|
H A D | KeyguardUpdateMonitor.java | 1257 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 D | KeyguardSecurityContainer.java | 195 void finish(boolean strongAuth, int targetUserId); in finish() argument
|
/aosp12/frameworks/base/services/core/java/com/android/server/biometrics/ |
H A D | Utils.java | 486 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 D | KeyguardViewMediator.java | 690 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 D | CarKeyguardViewController.java | 175 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 D | KeyguardBouncer.java | 543 public void notifyKeyguardAuthenticated(boolean strongAuth) { in notifyKeyguardAuthenticated() argument 545 mKeyguardViewController.finish(strongAuth, KeyguardUpdateMonitor.getCurrentUser()); in notifyKeyguardAuthenticated()
|
H A D | StatusBarKeyguardViewManager.java | 1142 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 D | KeyguardUpdateMonitorTest.java | 499 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 D | LockSettingsService.java | 323 void register(LockSettingsStrongAuth strongAuth) { in register() argument 324 strongAuth.registerStrongAuthTracker(getStub()); in register()
|