Home
last modified time | relevance | path

Searched refs:isAutoPinConfirmEnabled (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardPinViewControllerTest.kt230 `when`(lockPatternUtils.isAutoPinConfirmEnabled(anyInt())).thenReturn(true) in testOnViewAttached_withAutoPinConfirmationFailedPasswordAttemptsLessThan5()
247 `when`(lockPatternUtils.isAutoPinConfirmEnabled(anyInt())).thenReturn(true) in testOnViewAttached_withAutoPinConfirmationFailedPasswordAttemptsMoreThan5()
273 whenever(lockPatternUtils.isAutoPinConfirmEnabled(anyInt())).thenReturn(true) in onUserInput_autoConfirmation_attemptsUnlock()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/data/repository/
DAuthenticationRepositoryTest.kt126 whenever(lockPatternUtils.isAutoPinConfirmEnabled(USER_INFOS[0].id)).thenReturn(true) in isAutoConfirmFeatureEnabled()
127 whenever(lockPatternUtils.isAutoPinConfirmEnabled(USER_INFOS[1].id)).thenReturn(false) in isAutoConfirmFeatureEnabled()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardPinViewController.java191 return mLockPatternUtils.isAutoPinConfirmEnabled( in isAutoPinConfirmEnabledInSettings()
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/data/repository/
DAuthenticationRepository.kt209 getFreshValue = lockPatternUtils::isAutoPinConfirmEnabled,
/frameworks/base/core/java/com/android/internal/widget/
DLockPatternUtils.java724 public boolean isAutoPinConfirmEnabled(int userId) { in isAutoPinConfirmEnabled() method in LockPatternUtils