Home
last modified time | relevance | path

Searched refs:strongAuth (Results 1 – 7 of 7) 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.java219 public void finish(boolean strongAuth, int targetUserId) { in finish() argument
230 mViewMediatorCallback.keyguardDonePending(strongAuth, targetUserId); in finish()
232 mViewMediatorCallback.keyguardDone(strongAuth, targetUserId); in finish()
DKeyguardSecurityContainer.java111 public void finish(boolean strongAuth, int targetUserId); in finish() argument
481 boolean strongAuth = false; in showNextSecurityScreenOrFinish()
502 strongAuth = true; in showNextSecurityScreenOrFinish()
531 mSecurityCallback.finish(strongAuth, targetUserId); in showNextSecurityScreenOrFinish()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardViewMediator.java557 public void keyguardDone(boolean strongAuth, int targetUserId) {
578 public void keyguardDonePending(boolean strongAuth, int targetUserId) {
646 int strongAuth = strongAuthTracker.getStrongAuthForUser(currentUser);
650 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_TIMEOUT) != 0) {
652 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW) != 0) {
654 } else if (trust && (strongAuth & SOME_AUTH_REQUIRED_AFTER_USER_REQUEST) != 0) {
656 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_LOCKOUT) != 0) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardBouncer.java500 public void notifyKeyguardAuthenticated(boolean strongAuth) { in notifyKeyguardAuthenticated() argument
502 mKeyguardView.finish(strongAuth, KeyguardUpdateMonitor.getCurrentUser()); in notifyKeyguardAuthenticated()
DStatusBarKeyguardViewManager.java845 public void notifyKeyguardAuthenticated(boolean strongAuth) { in notifyKeyguardAuthenticated() argument
846 mBouncer.notifyKeyguardAuthenticated(strongAuth); in notifyKeyguardAuthenticated()
/frameworks/base/services/core/java/com/android/server/locksettings/
DLockSettingsService.java274 void register(LockSettingsStrongAuth strongAuth) { in register() argument
275 strongAuth.registerStrongAuthTracker(this.mStub); in register()