/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/dagger/ |
D | ControlsComponentTest.kt | 109 `when`(lockPatternUtils.getStrongAuthForUser(anyInt())) in testFeatureEnabledAfterBootVisibility() 118 `when`(lockPatternUtils.getStrongAuthForUser(anyInt())).thenReturn(STRONG_AUTH_NOT_REQUIRED) in testFeatureEnabledAndCannotShowOnLockScreenVisibility() 128 `when`(lockPatternUtils.getStrongAuthForUser(anyInt())).thenReturn(STRONG_AUTH_NOT_REQUIRED) in testFeatureEnabledAndCanShowOnLockScreenVisibility() 139 `when`(lockPatternUtils.getStrongAuthForUser(anyInt())).thenReturn(STRONG_AUTH_NOT_REQUIRED) in testFeatureEnabledAndCanShowWhileUnlockedVisibility()
|
/frameworks/base/tests/TrustTests/src/android/trust/test/lib/ |
D | ScreenLockRule.kt | 70 strongAuthSavedValue = lockPatternUtils.getStrongAuthForUser(userId) in <lambda>() 75 lockPatternUtils.getStrongAuthForUser(userId) == in <lambda>() 114 lockPatternUtils.getStrongAuthForUser(context.userId) == STRONG_AUTH_NOT_REQUIRED in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
D | KeyguardBiometricLockoutLoggerTest.kt | 95 whenever(strongAuthTracker.getStrongAuthForUser(anyInt())) in test_logTimeoutChange() 112 whenever(strongAuthTracker.getStrongAuthForUser(anyInt())) in test_logUnattendedUpdate() 129 whenever(strongAuthTracker.getStrongAuthForUser(anyInt())) in test_logMultipleChanges()
|
D | KeyguardUpdateMonitorTest.java | 1454 when(mStrongAuthTracker.getStrongAuthForUser(mSelectedUserInteractor.getSelectedUserId())) in testStartUdfpsServiceStrongAuthRequiredAfterTimeout() 2254 when(mStrongAuthTracker.getStrongAuthForUser(mCurrentUserId)) in userDeviceLockDown() 2312 when(mStrongAuthTracker.getStrongAuthForUser(mSelectedUserInteractor.getSelectedUserId())) in primaryAuthNotRequiredByStrongAuthTracker()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/ |
D | BiometricSettingsRepository.kt | 365 MutableStateFlow(AuthenticationFlags(currentUserId, getStrongAuthForUser(currentUserId))) 376 .map { AuthenticationFlags(userId, getStrongAuthForUser(userId)) } in userId() 378 .onStart { emit(AuthenticationFlags(userId, getStrongAuthForUser(userId))) } in userId() 403 val newFlags = getStrongAuthForUser(userId) in onStrongAuthRequiredChanged()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | LockPatternUtils.java | 1361 public int getStrongAuthForUser(int userId) { in getStrongAuthForUser() method in LockPatternUtils 1363 return getLockSettings().getStrongAuthForUser(userId); in getStrongAuthForUser() 1382 return getStrongAuthForUser(userId) == StrongAuthTracker.STRONG_AUTH_NOT_REQUIRED; in isTrustAllowedForUser() 1389 return (getStrongAuthForUser(userId) & ~StrongAuthTracker.ALLOWING_BIOMETRIC) == 0; in isBiometricAllowedForUser() 1393 return (getStrongAuthForUser(userId) in isUserInLockdown() 1732 public @StrongAuthFlags int getStrongAuthForUser(int userId) { in getStrongAuthForUser() method in LockPatternUtils.StrongAuthTracker 1741 return getStrongAuthForUser(userId) == STRONG_AUTH_NOT_REQUIRED; in isTrustAllowedForUser() 1749 boolean allowed = ((getStrongAuthForUser(userId) & ~ALLOWING_BIOMETRIC) == 0); in isBiometricAllowedForUser() 1779 int oldValue = getStrongAuthForUser(userId); in handleStrongAuthRequiredChanged()
|
D | ILockSettings.aidl | 71 int getStrongAuthForUser(int userId); in getStrongAuthForUser() method
|
/frameworks/base/core/tests/coretests/src/com/android/internal/widget/ |
D | LockPatternUtilsTest.java | 115 when(mLockSettings.getStrongAuthForUser(USER_ID)).thenReturn(STRONG_AUTH_NOT_REQUIRED); in isUserInLockDown() 121 when(mLockSettings.getStrongAuthForUser(USER_ID)).thenReturn( in isUserInLockDown() 128 when(mLockSettings.getStrongAuthForUser(USER_ID)).thenReturn( in isUserInLockDown()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/dagger/ |
D | ControlsComponent.kt | 88 lockPatternUtils.getStrongAuthForUser(userTracker.userHandle.identifier) == in getControlsController()
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | TestableNotificationManagerService.java | 197 public int getStrongAuthForUser(int userId) { in getStrongAuthForUser() method in TestableNotificationManagerService.StrongAuthTrackerFake
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardBiometricLockoutLogger.kt | 88 .getStrongAuthForUser(userId) in onStrongAuthStateChanged()
|
D | KeyguardUpdateMonitor.java | 1564 return containsFlag(mStrongAuthTracker.getStrongAuthForUser(userId), in isUserInLockdown() 1573 final int strongAuth = mStrongAuthTracker.getStrongAuthForUser(userId); in isEncryptedOrLockdown() 1586 return containsFlag(mStrongAuthTracker.getStrongAuthForUser(userId), in isDeviceLockedByAdaptiveAuth() 2005 return (getStrongAuthForUser(userId) in hasUserAuthenticatedSinceBoot() 4000 final int strongAuthFlags = mStrongAuthTracker.getStrongAuthForUser(userId); in dump() 4056 final int strongAuthFlags = mStrongAuthTracker.getStrongAuthForUser(userId); in dump()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ |
D | KeyguardViewMediatorTest.java | 621 when(strongAuthTracker.getStrongAuthForUser(anyInt())).thenReturn( in testBouncerPrompt_deviceLockedByAdmin() 640 when(strongAuthTracker.getStrongAuthForUser(anyInt())).thenReturn( in testBouncerPrompt_deviceLockedByAdaptiveAuth() 675 when(strongAuthTracker.getStrongAuthForUser(anyInt())) in testBouncerPrompt_afterUserLockDown() 693 when(strongAuthTracker.getStrongAuthForUser(anyInt())) in testBouncerPrompt_afterUserLockDown_noBiometricsEnrolled() 714 when(strongAuthTracker.getStrongAuthForUser(anyInt())).thenReturn( in testBouncerPrompt_nonStrongIdleTimeout()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/domain/interactor/ |
D | KeyguardQuickAffordanceInteractorSceneContainerTest.kt | 397 whenever(lockPatternUtils.getStrongAuthForUser(any())) in setUpMocks()
|
D | KeyguardQuickAffordanceInteractorParameterizedTest.kt | 397 whenever(lockPatternUtils.getStrongAuthForUser(any())) in setUpMocks()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | BiometricUnlockController.java | 639 final int strongAuthFlags = mUpdateMonitor.getStrongAuthTracker().getStrongAuthForUser( in logCalculateModeForFingerprint() 710 final int strongAuthFlags = mUpdateMonitor.getStrongAuthTracker().getStrongAuthForUser( in logCalculateModeForPassiveAuth()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/ |
D | KeyguardQuickAffordanceInteractor.kt | 361 lockPatternUtils.getStrongAuthForUser(userTracker.userHandle.identifier) in <lambda>()
|
/frameworks/base/services/core/java/com/android/server/biometrics/ |
D | Utils.java | 516 final int strongAuth = lpu.getStrongAuthForUser(user); in isUserEncryptedOrLockdown()
|
/frameworks/base/services/core/java/com/android/server/trust/ |
D | TrustManagerService.java | 895 int flag = mStrongAuthTracker.getStrongAuthForUser(userInfo.id); in refreshAgentList() 906 mStrongAuthTracker.getStrongAuthForUser( in refreshAgentList() 1946 mStrongAuthTracker.getStrongAuthForUser(user.id)));
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ui/viewmodel/ |
D | KeyguardBottomAreaViewModelTest.kt | 162 whenever(lockPatternUtils.getStrongAuthForUser(anyInt())) in setUp()
|
D | KeyguardQuickAffordancesCombinedViewModelTest.kt | 206 whenever(lockPatternUtils.getStrongAuthForUser(ArgumentMatchers.anyInt())) in setUp()
|
/frameworks/base/services/core/java/com/android/server/locksettings/ |
D | LockSettingsService.java | 404 public int getStrongAuthForUser(int userId) { in getStrongAuthForUser() method in LockSettingsService.SynchronizedStrongAuthTracker 406 return super.getStrongAuthForUser(userId); in getStrongAuthForUser() 2659 public int getStrongAuthForUser(int userId) { in getStrongAuthForUser() method in LockSettingsService 2661 return mStrongAuthTracker.getStrongAuthForUser(userId); in getStrongAuthForUser()
|
/frameworks/base/services/usb/java/com/android/server/usb/ |
D | UsbService.java | 1486 boolean lockDownTriggeredByUser = (getStrongAuthForUser(userId) in onStrongAuthRequiredChanged()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/ |
D | GlobalActionsDialogLite.java | 758 int state = mLockPatternUtils.getStrongAuthForUser(userId); in shouldDisplayLockdown()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
D | KeyguardViewMediator.java | 908 int strongAuth = strongAuthTracker.getStrongAuthForUser(currentUser);
|