Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DViewMediatorCallback.java36 void keyguardDone(boolean strongAuth, int targetUserId); in keyguardDone() argument
56 void keyguardDonePending(boolean strongAuth, int targetUserId); in keyguardDonePending() argument
DKeyguardHostView.java220 public void finish(boolean strongAuth, int targetUserId) { in finish() argument
231 mViewMediatorCallback.keyguardDonePending(strongAuth, targetUserId); in finish()
233 mViewMediatorCallback.keyguardDone(strongAuth, targetUserId); in finish()
DKeyguardSecurityContainer.java115 public void finish(boolean strongAuth, int targetUserId); in finish() argument
488 boolean strongAuth = false; in showNextSecurityScreenOrFinish()
509 strongAuth = true; in showNextSecurityScreenOrFinish()
538 mSecurityCallback.finish(strongAuth, targetUserId); in showNextSecurityScreenOrFinish()
DKeyguardUpdateMonitor.java1737 final int strongAuth = mStrongAuthTracker.getStrongAuthForUser(user); in shouldListenForFace() local
1739 containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_LOCKOUT) in shouldListenForFace()
1740 || containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW) in shouldListenForFace()
1741 || containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_USER_LOCKDOWN); in shouldListenForFace()
1743 containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_BOOT) in shouldListenForFace()
1744 || containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_TIMEOUT); in shouldListenForFace()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardViewMediator.java564 public void keyguardDone(boolean strongAuth, int targetUserId) {
585 public void keyguardDonePending(boolean strongAuth, int targetUserId) {
653 int strongAuth = strongAuthTracker.getStrongAuthForUser(currentUser);
657 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_TIMEOUT) != 0) {
659 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW) != 0) {
661 } else if (trust && (strongAuth & SOME_AUTH_REQUIRED_AFTER_USER_REQUEST) != 0) {
663 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_LOCKOUT) != 0) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardBouncer.java507 public void notifyKeyguardAuthenticated(boolean strongAuth) { in notifyKeyguardAuthenticated() argument
509 mKeyguardView.finish(strongAuth, KeyguardUpdateMonitor.getCurrentUser()); in notifyKeyguardAuthenticated()
DStatusBarKeyguardViewManager.java920 public void notifyKeyguardAuthenticated(boolean strongAuth) { in notifyKeyguardAuthenticated() argument
921 mBouncer.notifyKeyguardAuthenticated(strongAuth); in notifyKeyguardAuthenticated()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardUpdateMonitorTest.java363 private void testStrongAuthExceptOnBouncer(int strongAuth) { in testStrongAuthExceptOnBouncer() argument
366 when(mStrongAuthTracker.getStrongAuthForUser(anyInt())).thenReturn(strongAuth); in testStrongAuthExceptOnBouncer()
/frameworks/base/services/core/java/com/android/server/locksettings/
DLockSettingsService.java288 void register(LockSettingsStrongAuth strongAuth) { in register() argument
289 strongAuth.registerStrongAuthTracker(this.mStub); in register()