/frameworks/base/packages/SystemUI/multivalentTests/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/multivalentTests/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()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/ |
D | BiometricSettingsRepository.kt | 400 MutableStateFlow(AuthenticationFlags(currentUserId, getStrongAuthForUser(currentUserId))) 411 .map { AuthenticationFlags(userId, getStrongAuthForUser(userId)) } in userId() 413 .onStart { emit(AuthenticationFlags(userId, getStrongAuthForUser(userId))) } in userId() 438 val newFlags = getStrongAuthForUser(userId) in onStrongAuthRequiredChanged()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | LockPatternUtils.java | 1458 public int getStrongAuthForUser(int userId) { in getStrongAuthForUser() method in LockPatternUtils 1460 return getLockSettings().getStrongAuthForUser(userId); in getStrongAuthForUser() 1479 return getStrongAuthForUser(userId) == StrongAuthTracker.STRONG_AUTH_NOT_REQUIRED; in isTrustAllowedForUser() 1486 return (getStrongAuthForUser(userId) & ~StrongAuthTracker.ALLOWING_BIOMETRIC) == 0; in isBiometricAllowedForUser() 1490 return (getStrongAuthForUser(userId) in isUserInLockdown() 1829 public @StrongAuthFlags int getStrongAuthForUser(int userId) { in getStrongAuthForUser() method in LockPatternUtils.StrongAuthTracker 1838 return getStrongAuthForUser(userId) == STRONG_AUTH_NOT_REQUIRED; in isTrustAllowedForUser() 1846 boolean allowed = ((getStrongAuthForUser(userId) & ~ALLOWING_BIOMETRIC) == 0); in isBiometricAllowedForUser() 1876 int oldValue = getStrongAuthForUser(userId); in handleStrongAuthRequiredChanged()
|
D | ILockSettings.aidl | 71 int getStrongAuthForUser(int userId); in getStrongAuthForUser() method
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/dagger/ |
D | ControlsComponent.kt | 88 lockPatternUtils.getStrongAuthForUser(userTracker.userHandle.identifier) == in getControlsController()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardBiometricLockoutLogger.kt | 88 .getStrongAuthForUser(userId) in onStrongAuthStateChanged()
|
D | KeyguardUpdateMonitor.java | 1600 return containsFlag(mStrongAuthTracker.getStrongAuthForUser(userId), in isUserInLockdown() 1609 final int strongAuth = mStrongAuthTracker.getStrongAuthForUser(userId); in isEncryptedOrLockdown() 1622 return containsFlag(mStrongAuthTracker.getStrongAuthForUser(userId), in isDeviceLockedByAdaptiveAuth() 2049 return (getStrongAuthForUser(userId) in hasUserAuthenticatedSinceBoot() 4254 final int strongAuthFlags = mStrongAuthTracker.getStrongAuthForUser(userId); in dump() 4310 final int strongAuthFlags = mStrongAuthTracker.getStrongAuthForUser(userId); in dump()
|
/frameworks/base/core/tests/coretests/src/com/android/internal/widget/ |
D | LockPatternUtilsTest.java | 126 when(mLockSettings.getStrongAuthForUser(USER_ID)).thenReturn(STRONG_AUTH_NOT_REQUIRED); in isUserInLockDown() 132 when(mLockSettings.getStrongAuthForUser(USER_ID)).thenReturn( in isUserInLockDown() 139 when(mLockSettings.getStrongAuthForUser(USER_ID)).thenReturn( in isUserInLockDown()
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | TestableNotificationManagerService.java | 211 public int getStrongAuthForUser(int userId) { in getStrongAuthForUser() method in TestableNotificationManagerService.StrongAuthTrackerFake
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ |
D | KeyguardViewMediatorTest.java | 824 when(strongAuthTracker.getStrongAuthForUser(anyInt())).thenReturn( in testBouncerPrompt_deviceLockedByAdmin() 843 when(strongAuthTracker.getStrongAuthForUser(anyInt())).thenReturn( in testBouncerPrompt_deviceLockedByAdaptiveAuth() 878 when(strongAuthTracker.getStrongAuthForUser(anyInt())) in testBouncerPrompt_afterUserLockDown() 896 when(strongAuthTracker.getStrongAuthForUser(anyInt())) in testBouncerPrompt_afterUserLockDown_noBiometricsEnrolled() 917 when(strongAuthTracker.getStrongAuthForUser(anyInt())).thenReturn( in testBouncerPrompt_nonStrongIdleTimeout()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/domain/interactor/ |
D | KeyguardQuickAffordanceInteractorSceneContainerTest.kt | 389 whenever(lockPatternUtils.getStrongAuthForUser(any())) in setUpMocks()
|
D | KeyguardQuickAffordanceInteractorParameterizedTest.kt | 379 whenever(lockPatternUtils.getStrongAuthForUser(any())) in setUpMocks()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | BiometricUnlockController.java | 646 final int strongAuthFlags = mUpdateMonitor.getStrongAuthTracker().getStrongAuthForUser( in logCalculateModeForFingerprint() 719 final int strongAuthFlags = mUpdateMonitor.getStrongAuthTracker().getStrongAuthForUser( in logCalculateModeForPassiveAuth()
|
/frameworks/base/services/core/java/com/android/server/biometrics/ |
D | Utils.java | 553 final int strongAuth = lpu.getStrongAuthForUser(user); in isUserEncryptedOrLockdown()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/ |
D | KeyguardQuickAffordanceInteractor.kt | 412 lockPatternUtils.getStrongAuthForUser(userTracker.userHandle.identifier) in <lambda>()
|
/frameworks/base/services/core/java/com/android/server/trust/ |
D | TrustManagerService.java | 926 int flag = mStrongAuthTracker.getStrongAuthForUser(userInfo.id); in refreshAgentList() 937 mStrongAuthTracker.getStrongAuthForUser( in refreshAgentList() 2002 mStrongAuthTracker.getStrongAuthForUser(user.id)));
|
/frameworks/base/services/core/java/com/android/server/locksettings/ |
D | LockSettingsService.java | 418 public int getStrongAuthForUser(int userId) { in getStrongAuthForUser() method in LockSettingsService.SynchronizedStrongAuthTracker 420 return super.getStrongAuthForUser(userId); in getStrongAuthForUser() 2685 public int getStrongAuthForUser(int userId) { in getStrongAuthForUser() method in LockSettingsService 2687 return mStrongAuthTracker.getStrongAuthForUser(userId); in getStrongAuthForUser()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ui/viewmodel/ |
D | KeyguardQuickAffordancesCombinedViewModelTest.kt | 196 whenever(lockPatternUtils.getStrongAuthForUser(ArgumentMatchers.anyInt())) in setUp()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
D | KeyguardUpdateMonitorTest.java | 1704 when(mStrongAuthTracker.getStrongAuthForUser(mSelectedUserInteractor.getSelectedUserId())) in testStartUdfpsServiceStrongAuthRequiredAfterTimeout() 2557 when(mStrongAuthTracker.getStrongAuthForUser(mCurrentUserId)) in userDeviceLockDown() 2620 when(mStrongAuthTracker.getStrongAuthForUser(mSelectedUserInteractor.getSelectedUserId())) in primaryAuthNotRequiredByStrongAuthTracker()
|
/frameworks/base/services/companion/java/com/android/server/companion/virtual/ |
D | VirtualDeviceManagerService.java | 154 if ((getStrongAuthForUser(userId) & STRONG_AUTH_REQUIRED_AFTER_USER_LOCKDOWN) > 0) { in onStrongAuthRequiredChanged()
|
/frameworks/base/services/usb/java/com/android/server/usb/ |
D | UsbService.java | 1544 boolean lockDownTriggeredByUser = (getStrongAuthForUser(userId) in onStrongAuthRequiredChanged()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/ |
D | GlobalActionsDialogLite.java | 827 int state = mLockPatternUtils.getStrongAuthForUser(userId); in shouldDisplayLockdown()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
D | KeyguardViewMediator.java | 1001 int strongAuth = strongAuthTracker.getStrongAuthForUser(currentUser);
|