Home
last modified time | relevance | path

Searched refs:WipeTarget (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/shared/model/
DAuthenticationWipeModel.kt29 val wipeTarget: WipeTarget,
40 sealed class WipeTarget( class
46 WipeTarget(
53 WipeTarget(
60 WipeTarget(
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractor.kt31 import com.android.systemui.authentication.shared.model.AuthenticationWipeModel.WipeTarget in <lambda>()
289 private suspend fun getWipeTarget(): WipeTarget { in <lambda>()
301 WipeTarget.WholeDevice in <lambda>()
303 WipeTarget.User in <lambda>()
307 UserHandle.USER_NULL -> WipeTarget.WholeDevice in <lambda>()
308 else -> WipeTarget.ManagedProfile in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/ui/viewmodel/
DBouncerViewModel.kt324 return if (wipeTarget == AuthenticationWipeModel.WipeTarget.ManagedProfile) { in <lambda>()
343 return if (wipeTarget == AuthenticationWipeModel.WipeTarget.ManagedProfile) { in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/domain/interactor/
DAuthenticationInteractorTest.kt456 wipeTarget = AuthenticationWipeModel.WipeTarget.WholeDevice, in <lambda>()