Home
last modified time | relevance | path

Searched refs:DeviceUnlockSource (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/shared/model/
DDeviceUnlockSource.kt25 sealed class DeviceUnlockSource(val dismissesLockscreen: Boolean) { class
27 data object Fingerprint : DeviceUnlockSource(true)
28 data object FaceWithBypass : DeviceUnlockSource(dismissesLockscreen = true)
29 data object FaceWithoutBypass : DeviceUnlockSource(dismissesLockscreen = false)
30 data object TrustAgent : DeviceUnlockSource(dismissesLockscreen = false)
31 data object BouncerInput : DeviceUnlockSource(dismissesLockscreen = true)
DDeviceUnlockStatus.kt29 val deviceUnlockSource: DeviceUnlockSource?
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/domain/interactor/
DDeviceUnlockedInteractor.kt24 import com.android.systemui.deviceentry.shared.model.DeviceUnlockSource in <lambda>()
56 fingerprintAuthInteractor.fingerprintSuccess.map { DeviceUnlockSource.Fingerprint }, in <lambda>()
61 DeviceUnlockSource.FaceWithBypass in <lambda>()
63 DeviceUnlockSource.FaceWithoutBypass in <lambda>()
66 trustInteractor.isTrusted.filter { it }.map { DeviceUnlockSource.TrustAgent }, in <lambda>()
69 .map { DeviceUnlockSource.BouncerInput } in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/deviceentry/domain/interactor/
DDeviceUnlockedInteractorTest.kt28 import com.android.systemui.deviceentry.shared.model.DeviceUnlockSource
99 .isEqualTo(DeviceUnlockSource.Fingerprint) in deviceUnlockStatus_whenUnlockedAndAuthMethodIsPin_isTrue()
158 .isEqualTo(DeviceUnlockSource.FaceWithBypass) in deviceUnlockStatus_whenFaceIsAuthenticatedWhileAwakeWithBypass_isTrue()
172 .isEqualTo(DeviceUnlockSource.FaceWithoutBypass) in deviceUnlockStatus_whenFaceIsAuthenticatedWithoutBypass_providesThatInfo()
187 .isEqualTo(DeviceUnlockSource.Fingerprint) in deviceUnlockStatus_whenFingerprintIsAuthenticated_providesThatInfo()
204 .isEqualTo(DeviceUnlockSource.TrustAgent) in deviceUnlockStatus_whenUnlockedByTrustAgent_providesThatInfo()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/shade/domain/interactor/
DPanelExpansionInteractorImplTest.kt28 import com.android.systemui.deviceentry.shared.model.DeviceUnlockSource in <lambda>()
106 .isEqualTo(DeviceUnlockStatus(true, DeviceUnlockSource.Fingerprint)) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/scene/domain/startable/
DSceneContainerStartable.kt40 import com.android.systemui.deviceentry.shared.model.DeviceUnlockSource in <lambda>()
342 deviceUnlockStatus.deviceUnlockSource == DeviceUnlockSource.TrustAgent in <lambda>()