Home
last modified time | relevance | path

Searched refs:getPinLength (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardPinViewControllerTest.kt125 `when`(lockPatternUtils.getPinLength(anyInt())).thenReturn(6) in setup()
229 `when`(lockPatternUtils.getPinLength(anyInt())).thenReturn(6) in testOnViewAttached_withAutoPinConfirmationFailedPasswordAttemptsLessThan5()
246 `when`(lockPatternUtils.getPinLength(anyInt())).thenReturn(6) in testOnViewAttached_withAutoPinConfirmationFailedPasswordAttemptsMoreThan5()
272 whenever(lockPatternUtils.getPinLength(anyInt())).thenReturn(6) in onUserInput_autoConfirmation_attemptsUnlock()
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/data/repository/
DAuthenticationRepository.kt152 suspend fun getPinLength(): Int in <lambda>() method
284 override suspend fun getPinLength(): Int { in getAuthenticationMethod() method
285 return withContext(backgroundDispatcher) { lockPatternUtils.getPinLength(selectedUserId) } in getAuthenticationMethod()
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractor.kt115 repository.getPinLength().takeIf { in <lambda>()
281 Pin -> inputLength < repository.getPinLength() in <lambda>()
/frameworks/base/core/java/com/android/internal/widget/
DILockSettings.aidl59 int getPinLength(int userId); in getPinLength() method
DLockPatternUtils.java627 public int getPinLength(int userId) { in getPinLength() method in LockPatternUtils
629 return getLockSettings().getPinLength(userId); in getPinLength()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardPinViewController.java75 mPinLength = mLockPatternUtils.getPinLength(selectedUserInteractor.getSelectedUserId()); in KeyguardPinViewController()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/authentication/data/repository/
DFakeAuthenticationRepository.kt120 override suspend fun getPinLength(): Int { in <lambda>() method in com.android.systemui.authentication.data.repository.FakeAuthenticationRepository
/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/
DSyntheticPasswordTests.java632 assertEquals(manager.getPinLength(protectorId, userId), lockscreenCredentialPin.size()); in testStorePinLengthOnDisk()
/frameworks/base/services/core/java/com/android/server/locksettings/
DLockSettingsService.java1424 public int getPinLength(int userId) { in getPinLength() method in LockSettingsService
1436 return mSpManager.getPinLength(protectorId, userId); in getPinLength()
DSyntheticPasswordManager.java765 int getPinLength(long protectorId, int userId) { in getPinLength() method in SyntheticPasswordManager