Home
last modified time | relevance | path

Searched refs:DeviceLockControllerService (Results 1 – 2 of 2) sorted by relevance

/packages/modules/DeviceLock/DeviceLockController/tests/robolectric/src/com/android/devicelockcontroller/
DDeviceLockControllerServiceTest.java87 DeviceLockControllerService dlcService = Robolectric.setupService( in setUp()
88 DeviceLockControllerService.class); in setUp()
90 new ComponentName(mTestApp, DeviceLockControllerService.class), in setUp()
98 Intent serviceIntent = new Intent(mTestApp, DeviceLockControllerService.class); in lockDevice_shouldLogKioskRequest_andLogLockSuccess()
116 Intent serviceIntent = new Intent(mTestApp, DeviceLockControllerService.class); in lockDevice_failure_shouldLogToStatsLogger()
134 Intent serviceIntent = new Intent(mTestApp, DeviceLockControllerService.class); in unlockDevice_shouldLogKioskRequest_AndLogUnlockSuccess()
152 Intent serviceIntent = new Intent(mTestApp, DeviceLockControllerService.class); in unlockDevice_failure_shouldLogToStatsLogger()
169 Intent serviceIntent = new Intent(mTestApp, DeviceLockControllerService.class); in isDeviceLocked_shouldLogKioskRequest()
185 Intent serviceIntent = new Intent(mTestApp, DeviceLockControllerService.class); in getDeviceIdentifier_shouldLogKioskRequest()
199 Intent serviceIntent = new Intent(mTestApp, DeviceLockControllerService.class); in clearDeviceRestrictions_shouldLogKioskRequest()
[all …]
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/
DDeviceLockControllerService.java49 public final class DeviceLockControllerService extends Service { class