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.java221 public void finish(boolean strongAuth, int targetUserId) { in finish() argument
232 mViewMediatorCallback.keyguardDonePending(strongAuth, targetUserId); in finish()
234 mViewMediatorCallback.keyguardDone(strongAuth, targetUserId); in finish()
DKeyguardSecurityContainer.java68 public void finish(boolean strongAuth, int targetUserId); in finish() argument
322 boolean strongAuth = false; in showNextSecurityScreenOrFinish()
337 strongAuth = true; in showNextSecurityScreenOrFinish()
361 mSecurityCallback.finish(strongAuth, targetUserId); in showNextSecurityScreenOrFinish()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardBouncer.java465 public void notifyKeyguardAuthenticated(boolean strongAuth) { in notifyKeyguardAuthenticated() argument
467 mKeyguardView.finish(strongAuth, KeyguardUpdateMonitor.getCurrentUser()); in notifyKeyguardAuthenticated()
DStatusBarKeyguardViewManager.java700 public void notifyKeyguardAuthenticated(boolean strongAuth) { in notifyKeyguardAuthenticated() argument
701 mBouncer.notifyKeyguardAuthenticated(strongAuth); in notifyKeyguardAuthenticated()
/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) {
648 int strongAuth = strongAuthTracker.getStrongAuthForUser(currentUser);
652 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_TIMEOUT) != 0) {
654 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW) != 0) {
656 } else if (trust && (strongAuth & SOME_AUTH_REQUIRED_AFTER_USER_REQUEST) != 0) {
658 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_LOCKOUT) != 0) {
/frameworks/base/services/core/java/com/android/server/locksettings/
DLockSettingsService.java263 void register(LockSettingsStrongAuth strongAuth) { in register() argument
264 strongAuth.registerStrongAuthTracker(this.mStub); in register()