Searched refs:DeviceUnlockSource (Results 1 – 6 of 6) sorted by relevance
25 sealed class DeviceUnlockSource(val dismissesLockscreen: Boolean) { class27 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)
29 val deviceUnlockSource: DeviceUnlockSource?
24 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>()
28 import com.android.systemui.deviceentry.shared.model.DeviceUnlockSource99 .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()
28 import com.android.systemui.deviceentry.shared.model.DeviceUnlockSource in <lambda>()106 .isEqualTo(DeviceUnlockStatus(true, DeviceUnlockSource.Fingerprint)) in <lambda>()
40 import com.android.systemui.deviceentry.shared.model.DeviceUnlockSource in <lambda>()342 deviceUnlockStatus.deviceUnlockSource == DeviceUnlockSource.TrustAgent in <lambda>()