/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/ |
D | BouncerInteractor.kt | 56 private val authenticationInteractor: AuthenticationInteractor, in <lambda>() constant in com.android.systemui.bouncer.domain.interactor.BouncerInteractor 68 val isAutoConfirmEnabled: StateFlow<Boolean> = authenticationInteractor.isAutoConfirmEnabled in <lambda>() 71 val hintedPinLength: StateFlow<Int?> = authenticationInteractor.hintedPinLength in <lambda>() 74 val isPatternVisible: StateFlow<Boolean> = authenticationInteractor.isPatternVisible in <lambda>() 78 authenticationInteractor.isPinEnhancedPrivacyEnabled in <lambda>() 90 authenticationInteractor.onAuthenticationResult in <lambda>() 92 !successfullyAuthenticated && authenticationInteractor.lockoutEndTimestamp != null in <lambda>() 156 if (authenticationInteractor.getAuthenticationMethod() == Sim) { in <lambda>() 167 .async { authenticationInteractor.authenticate(input, tryAutoConfirm) } in <lambda>() 177 if (authenticationInteractor.getAuthenticationMethod() in setOf(Pin, Password, Pattern)) { in <lambda>()
|
D | BouncerActionButtonInteractor.kt | 64 private val authenticationInteractor: AuthenticationInteractor, constant in com.android.systemui.bouncer.domain.interactor.BouncerActionButtonInteractor 81 authenticationInteractor.authenticationMethod.asUnitFlow, 155 authenticationInteractor.getAuthenticationMethod().isSecure in isReturnToCallButton()
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/deviceentry/domain/interactor/ |
D | DeviceUnlockedInteractorKosmos.kt | 19 import com.android.systemui.authentication.domain.interactor.authenticationInteractor 30 authenticationInteractor = authenticationInteractor, in <lambda>()
|
D | DeviceEntryInteractorKosmos.kt | 19 import com.android.systemui.authentication.domain.interactor.authenticationInteractor 35 authenticationInteractor = authenticationInteractor, in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/viewmodel/ |
D | BouncerMessageViewModel.kt | 73 private val authenticationInteractor: AuthenticationInteractor, in <lambda>() constant in com.android.systemui.bouncer.ui.viewmodel.BouncerMessageViewModel 114 authenticationInteractor.authenticationMethod in <lambda>() 144 authenticationInteractor.authenticationMethod in <lambda>() 170 authenticationInteractor.authenticationMethod, in <lambda>() 225 authenticationInteractor.authenticationMethod, in <lambda>() 263 authenticationInteractor.authenticationMethod, in <lambda>() 329 authenticationInteractor.authenticationMethod.collectLatest { authMethod -> in <lambda>() 357 val endTimestampMs = authenticationInteractor.lockoutEndTimestamp ?: 0 in <lambda>() 412 authenticationInteractor: AuthenticationInteractor, in viewModel() 426 authenticationInteractor = authenticationInteractor, in viewModel()
|
D | BouncerViewModel.kt | 75 private val authenticationInteractor: AuthenticationInteractor, in <lambda>() constant in com.android.systemui.bouncer.ui.viewmodel.BouncerViewModel 139 authenticationInteractor.authenticationMethod in <lambda>() 225 initialValue = authenticationInteractor.lockoutEndTimestamp == null, in <lambda>() 232 authenticationInteractor.upcomingWipe.collect { wipeModel -> in <lambda>() 424 authenticationInteractor: AuthenticationInteractor, in viewModel() 438 authenticationInteractor = authenticationInteractor, in viewModel()
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/bouncer/domain/interactor/ |
D | BouncerInteractorKosmos.kt | 20 import com.android.systemui.authentication.domain.interactor.authenticationInteractor 35 authenticationInteractor = authenticationInteractor, in <lambda>()
|
D | BouncerActionButtonInteractorKosmos.kt | 24 import com.android.systemui.authentication.domain.interactor.authenticationInteractor 42 authenticationInteractor = authenticationInteractor, in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/bouncer/ui/viewmodel/ |
D | BouncerMessageViewModelKosmos.kt | 20 import com.android.systemui.authentication.domain.interactor.authenticationInteractor 42 authenticationInteractor = authenticationInteractor, in <lambda>()
|
D | BouncerViewModelKosmos.kt | 23 import com.android.systemui.authentication.domain.interactor.authenticationInteractor 45 authenticationInteractor = authenticationInteractor, in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/domain/interactor/ |
D | DeviceUnlockedInteractor.kt | 46 authenticationInteractor: AuthenticationInteractor, in <lambda>() 67 authenticationInteractor.onAuthenticationResult in <lambda>() 85 authenticationInteractor.authenticationMethod in <lambda>()
|
D | DeviceEntryInteractor.kt | 61 private val authenticationInteractor: AuthenticationInteractor, in <lambda>() constant in com.android.systemui.deviceentry.domain.interactor.DeviceEntryInteractor 133 authenticationInteractor.authenticationMethod.map { in <lambda>() 250 authenticationInteractor.getAuthenticationMethod().isSecure in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/scene/domain/interactor/ |
D | SceneContainerStartableKosmos.kt | 20 import com.android.systemui.authentication.domain.interactor.authenticationInteractor 60 authenticationInteractor = { authenticationInteractor }, in <lambda>()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/domain/interactor/ |
D | BouncerInteractorTest.kt | 26 import com.android.systemui.authentication.domain.interactor.authenticationInteractor in <lambda>() 58 private val authenticationInteractor = kosmos.authenticationInteractor in <lambda>() constant in com.android.systemui.bouncer.domain.interactor.BouncerInteractorTest 244 assertThat(authenticationInteractor.lockoutEndTimestamp).isNotNull() in <lambda>() 249 assertThat(authenticationInteractor.lockoutEndTimestamp).isNull() in <lambda>()
|
D | AlternateBouncerInteractorTest.kt | 27 import com.android.systemui.authentication.domain.interactor.authenticationInteractor 97 kosmos.authenticationInteractor.authenticate(FakeAuthenticationRepository.DEFAULT_PIN) in canShowAlternateBouncer_false_dueToTransitionState_scene_container()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/scene/domain/interactor/ |
D | SceneBackInteractorTest.kt | 27 import com.android.systemui.authentication.domain.interactor.authenticationInteractor in <lambda>() 50 private val authenticationInteractor by lazy { kosmos.authenticationInteractor } in <lambda>() constant in com.android.systemui.scene.domain.interactor.SceneBackInteractorTest 196 assertThat(authenticationInteractor.authenticate(FakeAuthenticationRepository.DEFAULT_PIN)) in <lambda>()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/ui/viewmodel/ |
D | PinBouncerViewModelTest.kt | 31 import com.android.systemui.authentication.domain.interactor.authenticationInteractor in <lambda>() 64 private val authenticationInteractor by lazy { kosmos.authenticationInteractor } in <lambda>() constant in com.android.systemui.bouncer.ui.viewmodel.PinBouncerViewModelTest 207 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in <lambda>() 239 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in <lambda>() 267 collectLastValue(authenticationInteractor.isAutoConfirmEnabled) in <lambda>() 271 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in <lambda>() 286 collectLastValue(authenticationInteractor.isAutoConfirmEnabled) in <lambda>()
|
D | PatternBouncerViewModelTest.kt | 26 import com.android.systemui.authentication.domain.interactor.authenticationInteractor in <lambda>() 55 private val authenticationInteractor by lazy { kosmos.authenticationInteractor } in <lambda>() constant in com.android.systemui.bouncer.ui.viewmodel.PatternBouncerViewModelTest 110 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in <lambda>() 328 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in <lambda>()
|
D | PasswordBouncerViewModelTest.kt | 25 import com.android.systemui.authentication.domain.interactor.authenticationInteractor 63 private val authenticationInteractor by lazy { kosmos.authenticationInteractor } in <lambda>() constant 127 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in onAuthenticateKeyPressed_whenCorrect() 167 val authResult by collectLastValue(authenticationInteractor.onAuthenticationResult) in onAuthenticateKeyPressed_correctAfterWrong()
|
D | BouncerMessageViewModelTest.kt | 28 import com.android.systemui.authentication.domain.interactor.authenticationInteractor in <lambda>() 75 private val authenticationInteractor by lazy { kosmos.authenticationInteractor } in <lambda>() constant in com.android.systemui.bouncer.ui.viewmodel.BouncerMessageViewModelTest 126 val lockoutEndMs = authenticationInteractor.lockoutEndTimestamp ?: 0 in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/binder/ |
D | ComposeBouncerViewBinder.kt | 30 authenticationInteractor: AuthenticationInteractor, in <lambda>() 66 authenticationInteractor.onAuthenticationResult.collectLatest { in <lambda>()
|
D | BouncerViewBinder.kt | 45 val authenticationInteractor: AuthenticationInteractor, constant in com.android.systemui.bouncer.ui.binder.ComposeBouncerDependencies 70 deps.authenticationInteractor, in bind()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/deviceentry/domain/interactor/ |
D | DeviceUnlockedInteractorTest.kt | 24 import com.android.systemui.authentication.domain.interactor.authenticationInteractor 62 authenticationInteractor = kosmos.authenticationInteractor,
|
D | DeviceEntryInteractorTest.kt | 27 import com.android.systemui.authentication.domain.interactor.authenticationInteractor in <lambda>() 83 private val authenticationInteractor by lazy { kosmos.authenticationInteractor } in <lambda>() constant 436 authenticationInteractor.authenticate(FakeAuthenticationRepository.DEFAULT_PIN) in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/authentication/domain/interactor/ |
D | AuthenticationInteractorKosmos.kt | 25 val Kosmos.authenticationInteractor by constant
|