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.java223 public void finish(boolean strongAuth, int targetUserId) { in finish() argument
234 mViewMediatorCallback.keyguardDonePending(strongAuth, targetUserId); in finish()
236 mViewMediatorCallback.keyguardDone(strongAuth, targetUserId); in finish()
DKeyguardSecurityContainer.java65 public void finish(boolean strongAuth, int targetUserId); in finish() argument
323 boolean strongAuth = false; in showNextSecurityScreenOrFinish()
338 strongAuth = true; in showNextSecurityScreenOrFinish()
362 mSecurityCallback.finish(strongAuth, targetUserId); in showNextSecurityScreenOrFinish()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardBouncer.java306 public void notifyKeyguardAuthenticated(boolean strongAuth) { in notifyKeyguardAuthenticated() argument
308 mKeyguardView.finish(strongAuth, KeyguardUpdateMonitor.getCurrentUser()); in notifyKeyguardAuthenticated()
DStatusBarKeyguardViewManager.java630 public void notifyKeyguardAuthenticated(boolean strongAuth) { in notifyKeyguardAuthenticated() argument
631 mBouncer.notifyKeyguardAuthenticated(strongAuth); in notifyKeyguardAuthenticated()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardViewMediator.java554 public void keyguardDone(boolean strongAuth, int targetUserId) {
560 if (strongAuth) {
578 public void keyguardDonePending(boolean strongAuth, int targetUserId) {
591 if (strongAuth) {
637 int strongAuth = strongAuthTracker.getStrongAuthForUser(currentUser);
641 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_TIMEOUT) != 0) {
643 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW) != 0) {
645 } else if (trust && (strongAuth & SOME_AUTH_REQUIRED_AFTER_USER_REQUEST) != 0) {
647 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_LOCKOUT) != 0) {
/frameworks/base/services/core/java/com/android/server/
DLockSettingsService.java220 void register(LockSettingsStrongAuth strongAuth) { in register() argument
221 strongAuth.registerStrongAuthTracker(this.mStub); in register()