Home
last modified time | relevance | path

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

/packages/modules/DeviceLock/DeviceLockController/tests/robolectric/src/com/android/devicelockcontroller/policy/
DDeviceStateControllerImplTest.java277 () -> mDeviceStateController.clearDevice().get()); in clearDevice_withUnprovisionedState_shouldThrowException()
292 () -> mDeviceStateController.clearDevice().get()); in clearDevice_withProvisionInProgressState_shouldThrowException()
307 () -> mDeviceStateController.clearDevice().get()); in clearDevice_withProvisionPausedState_shouldThrowException()
322 () -> mDeviceStateController.clearDevice().get()); in clearDevice_withProvisionFailedState_shouldThrowException()
340 mDeviceStateController.clearDevice().get(); in clearDevice_withKioskProvisionedState_shouldClearDevice()
354 () -> mDeviceStateController.clearDevice().get()); in clearDevice_withClearDeviceState_shouldThrowException()
366 mDeviceStateController.clearDevice().get(); in clearDevice_withProvisionSucceeded_shouldUnlockDevice()
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/policy/
DDeviceStateController.java47 ListenableFuture<Void> clearDevice(); in clearDevice() method
DDeviceStateControllerImpl.java67 public ListenableFuture<Void> clearDevice() { in clearDevice() method in DeviceStateControllerImpl
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/
DDeviceLockControllerService.java109 Futures.transformAsync(mDeviceStateController.clearDevice(),
/packages/modules/DeviceLock/DeviceLockController/tests/robolectric/src/com/android/devicelockcontroller/
DDeviceLockControllerServiceTest.java202 when(deviceStateController.clearDevice()).thenReturn(Futures.immediateVoidFuture()); in clearDeviceRestrictions_shouldLogKioskRequest()
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/debug/
DDeviceLockCommandReceiver.java179 Futures.addCallback(deviceStateController.clearDevice(), in onReceive()