Home
last modified time | relevance | path

Searched refs:hintedPinLength (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractorTest.kt251 val hintedPinLength by collectLastValue(underTest.hintedPinLength) in <lambda>() constant
262 assertThat(hintedPinLength).isNull() in <lambda>()
472 val hintedPinLength by collectLastValue(underTest.hintedPinLength) in <lambda>() constant
478 assertThat(hintedPinLength).isNull() in <lambda>()
484 val hintedPinLength by collectLastValue(underTest.hintedPinLength) in <lambda>() constant
489 repeat(kosmos.fakeAuthenticationRepository.hintedPinLength - 1) { in <lambda>()
497 assertThat(hintedPinLength).isNull() in <lambda>()
503 val hintedPinLength by collectLastValue(underTest.hintedPinLength) in <lambda>() constant
509 repeat(kosmos.fakeAuthenticationRepository.hintedPinLength) { add(it + 1) } in <lambda>()
514 assertThat(hintedPinLength) in <lambda>()
[all …]
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/ui/viewmodel/
DPinBouncerViewModelTest.kt138 val hintedPinLength by collectLastValue(underTest.hintedPinLength) in <lambda>() constant
140 assertThat(hintedPinLength).isNull() in <lambda>()
405 val hintedPinLength by collectLastValue(underTest.hintedPinLength) in <lambda>() constant
406 assertThat(hintedPinLength).isEqualTo(FakeAuthenticationRepository.HINTING_PIN_LENGTH) in <lambda>()
443 val hintedPinLength by collectLastValue(underTest.hintedPinLength) in <lambda>() constant
444 assertThat(hintedPinLength).isNull() in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/viewmodel/
DPinBouncerViewModel.kt77 val hintedPinLength: StateFlow<Int?> = in <lambda>() constant
81 interactor.hintedPinLength in <lambda>()
146 val maxInputLength = hintedPinLength.value ?: Int.MAX_VALUE in <lambda>()
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/bouncer/ui/composable/
DPinInputDisplay.kt89 val hintedPinLength: Int? by viewModel.hintedPinLength.collectAsStateWithLifecycle() in <lambda>() constant
103 when (val length = hintedPinLength) { in <lambda>()
119 hintedPinLength: Int, in HintingPinInputDisplay()
142 repeat(hintedPinLength - currentPinLength) { add(shapeAnimations.dotToCircle) } in HintingPinInputDisplay()
157 for (index in 0 until hintedPinLength) { in HintingPinInputDisplay()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
DBouncerInteractor.kt71 val hintedPinLength: StateFlow<Int?> = authenticationInteractor.hintedPinLength in <lambda>() constant
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractor.kt112 val hintedPinLength: StateFlow<Int?> = in <lambda>() constant in com.android.systemui.authentication.domain.interactor.AuthenticationInteractor
116 isAutoConfirmEnabled && it == repository.hintedPinLength in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/data/repository/
DAuthenticationRepository.kt74 val hintedPinLength: Int in <lambda>() constant
198 override val hintedPinLength: Int = 6 constant
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/authentication/data/repository/
DFakeAuthenticationRepository.kt44 override val hintedPinLength: Int = HINTING_PIN_LENGTH in <lambda>() constant in com.android.systemui.authentication.data.repository.FakeAuthenticationRepository