Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/biometrics/
DUtils.java516 final int strongAuth = lpu.getStrongAuthForUser(user); in isUserEncryptedOrLockdown() local
517 final boolean isEncrypted = containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_BOOT); in isUserEncryptedOrLockdown()
518 final boolean isLockDown = containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW) in isUserEncryptedOrLockdown()
519 || containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_USER_LOCKDOWN); in isUserEncryptedOrLockdown()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardViewController.java158 void notifyKeyguardAuthenticated(boolean strongAuth); in notifyKeyguardAuthenticated() argument
DKeyguardUpdateMonitor.java1573 final int strongAuth = mStrongAuthTracker.getStrongAuthForUser(userId); in isEncryptedOrLockdown() local
1575 containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW) in isEncryptedOrLockdown()
1576 || containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_USER_LOCKDOWN); in isEncryptedOrLockdown()
1577 final boolean isEncrypted = containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_BOOT); in isEncryptedOrLockdown()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
DPrimaryBouncerInteractor.kt297 fun notifyKeyguardAuthenticatedBiometrics(strongAuth: Boolean) { in <lambda>()
298 repository.setKeyguardAuthenticatedBiometrics(strongAuth) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardViewMediator.java908 int strongAuth = strongAuthTracker.getStrongAuthForUser(currentUser);
919 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_TIMEOUT) != 0) {
921 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_AFTER_USER_LOCKDOWN) != 0) {
923 } else if ((strongAuth & STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW) != 0) {
925 } else if (any && ((strongAuth & STRONG_AUTH_REQUIRED_AFTER_LOCKOUT) != 0
928 } else if ((strongAuth & SOME_AUTH_REQUIRED_AFTER_ADAPTIVE_AUTH_REQUEST) != 0) {
931 && (strongAuth & SOME_AUTH_REQUIRED_AFTER_USER_REQUEST) != 0) {
934 && (strongAuth & SOME_AUTH_REQUIRED_AFTER_TRUSTAGENT_EXPIRED) != 0) {
936 } else if (any && (strongAuth & STRONG_AUTH_REQUIRED_FOR_UNATTENDED_UPDATE) != 0) {
938 } else if (any && (strongAuth
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarKeyguardViewManager.java1546 public void notifyKeyguardAuthenticated(boolean strongAuth) { in notifyKeyguardAuthenticated() argument
1547 mPrimaryBouncerInteractor.notifyKeyguardAuthenticatedBiometrics(strongAuth); in notifyKeyguardAuthenticated()
/frameworks/base/services/core/java/com/android/server/locksettings/
DLockSettingsService.java410 void register(LockSettingsStrongAuth strongAuth) { in register() argument
411 strongAuth.registerStrongAuthTracker(getStub()); in register()