/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/ |
H A D | BouncerInteractor.kt | 50 private val authenticationInteractor: AuthenticationInteractor, 59 authenticationInteractor.isThrottled, 60 authenticationInteractor.throttling, 70 authenticationInteractor.isThrottled.value, 71 authenticationInteractor.throttling.value, 82 val isThrottled: StateFlow<Boolean> = authenticationInteractor.isThrottled 85 val isAutoConfirmEnabled: StateFlow<Boolean> = authenticationInteractor.isAutoConfirmEnabled 88 val hintedPinLength: StateFlow<Int?> = authenticationInteractor.hintedPinLength 91 val isPatternVisible: StateFlow<Boolean> = authenticationInteractor.isPatternVisible 115 if (authenticationInteractor.isAuthenticationRequired()) { [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ui/viewmodel/ |
H A D | ShadeSceneViewModel.kt | 37 authenticationInteractor: AuthenticationInteractor, 43 authenticationInteractor.isUnlocked, 44 authenticationInteractor.canSwipeToDismiss, 56 isUnlocked = authenticationInteractor.isUnlocked.value, 57 canSwipeToDismiss = authenticationInteractor.canSwipeToDismiss.value,
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/scene/ |
H A D | SceneFrameworkIntegrationTest.kt | 90 private val authenticationInteractor = regex 91 utils.authenticationInteractor( 108 authenticationInteractor = authenticationInteractor, 114 authenticationInteractor = authenticationInteractor, 119 authenticationInteractor = authenticationInteractor, 126 authenticationInteractor = authenticationInteractor, 148 authenticationInteractor = authenticationInteractor, 448 val authMethod = authenticationInteractor.getAuthenticationMethod() 460 .that(authenticationInteractor.isUnlocked.value)
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ui/viewmodel/ |
H A D | LockscreenSceneViewModelTest.kt | 42 private val authenticationInteractor = regex 43 utils.authenticationInteractor( 49 authenticationInteractor = authenticationInteractor, 52 authenticationInteractor = authenticationInteractor,
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/ui/viewmodel/ |
H A D | ShadeSceneViewModelTest.kt | 42 private val authenticationInteractor = regex 43 utils.authenticationInteractor( 51 authenticationInteractor = authenticationInteractor, 54 authenticationInteractor = authenticationInteractor,
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bouncer/ui/viewmodel/ |
H A D | AuthMethodBouncerViewModelTest.kt | 38 private val authenticationInteractor = regex 39 utils.authenticationInteractor( 48 authenticationInteractor = authenticationInteractor,
|
H A D | BouncerViewModelTest.kt | 47 private val authenticationInteractor = regex 48 utils.authenticationInteractor( 53 authenticationInteractor = authenticationInteractor, 59 authenticationInteractor = authenticationInteractor,
|
H A D | PasswordBouncerViewModelTest.kt | 45 private val authenticationInteractor = regex 46 utils.authenticationInteractor( 52 authenticationInteractor = authenticationInteractor, 58 authenticationInteractor = authenticationInteractor,
|
H A D | PatternBouncerViewModelTest.kt | 47 private val authenticationInteractor = regex 48 utils.authenticationInteractor( 54 authenticationInteractor = authenticationInteractor, 60 authenticationInteractor = authenticationInteractor,
|
H A D | PinBouncerViewModelTest.kt | 48 private val authenticationInteractor = regex 49 utils.authenticationInteractor( 54 authenticationInteractor = authenticationInteractor, 60 authenticationInteractor = authenticationInteractor,
|
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/scene/ |
H A D | SceneTestUtils.kt | 136 fun authenticationInteractor( regex 166 authenticationInteractor: AuthenticationInteractor, 173 authenticationInteractor = authenticationInteractor, 181 authenticationInteractor: AuthenticationInteractor, 187 authenticationInteractor = authenticationInteractor,
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/ui/viewmodel/ |
H A D | QuickSettingsSceneViewModelTest.kt | 42 private val authenticationInteractor = regex 43 utils.authenticationInteractor( 51 authenticationInteractor = authenticationInteractor,
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/scene/domain/startable/ |
H A D | SceneContainerStartable.kt | 58 private val authenticationInteractor: AuthenticationInteractor, 109 authenticationInteractor.isUnlocked 120 val isBypassEnabled = authenticationInteractor.isBypassEnabled() 180 val authMethod = authenticationInteractor.getAuthenticationMethod() 181 val isUnlocked = authenticationInteractor.isUnlocked.value
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/viewmodel/ |
H A D | LockscreenSceneViewModel.kt | 32 authenticationInteractor: AuthenticationInteractor, 37 authenticationInteractor.isUnlocked.map { isUnlocked ->
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/viewmodel/ |
H A D | BouncerViewModel.kt | 49 private val authenticationInteractor: AuthenticationInteractor, 89 authenticationInteractor.authenticationMethod 110 when (authenticationInteractor.getAuthenticationMethod()) {
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/scene/domain/startable/ |
H A D | SceneContainerStartableTest.kt | 60 private val authenticationInteractor = regex 61 utils.authenticationInteractor( 75 authenticationInteractor = authenticationInteractor,
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bouncer/domain/interactor/ |
H A D | BouncerInteractorTest.kt | 49 private val authenticationInteractor = regex 50 utils.authenticationInteractor( 56 authenticationInteractor = authenticationInteractor,
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
H A D | KeyguardSecurityContainerControllerTest.kt | 155 private lateinit var authenticationInteractor: AuthenticationInteractor 224 authenticationInteractor = 225 sceneTestUtils.authenticationInteractor( 260 { authenticationInteractor },
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
H A D | KeyguardSecurityContainerController.java | 452 Provider<AuthenticationInteractor> authenticationInteractor in KeyguardSecurityContainerController() 481 mAuthenticationInteractor = authenticationInteractor; in KeyguardSecurityContainerController()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/authentication/domain/interactor/ |
H A D | AuthenticationInteractorTest.kt | 54 utils.authenticationInteractor(
|