Home
last modified time | relevance | path

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

/cts/common/device-side/bedstead/eventlib/src/test/java/com/android/eventlib/events/deviceadminreceivers/
DDeviceAdminUserStartedEventTest.java63DeviceAdminUserStartedEvent.logger(DEVICE_ADMIN_RECEIVER, sContext, intent, USER_HANDLE).log(); in whereIntent_works()
65 EventLogs<DeviceAdminUserStartedEvent> eventLogs = in whereIntent_works()
66 DeviceAdminUserStartedEvent.queryPackage(sContext.getPackageName()) in whereIntent_works()
77 DeviceAdminUserStartedEvent.logger( in whereIntent_skipsNonMatching()
79DeviceAdminUserStartedEvent.logger(DEVICE_ADMIN_RECEIVER, sContext, intent, USER_HANDLE).log(); in whereIntent_skipsNonMatching()
81 EventLogs<DeviceAdminUserStartedEvent> eventLogs = in whereIntent_skipsNonMatching()
82 DeviceAdminUserStartedEvent.queryPackage(sContext.getPackageName()) in whereIntent_skipsNonMatching()
90 DeviceAdminUserStartedEvent.logger(DEVICE_ADMIN_RECEIVER, sContext, INTENT, USER_HANDLE) in whereDeviceAdminReceiver_customValueOnLogger_works()
94 EventLogs<DeviceAdminUserStartedEvent> eventLogs = in whereDeviceAdminReceiver_customValueOnLogger_works()
95 DeviceAdminUserStartedEvent.queryPackage(sContext.getPackageName()) in whereDeviceAdminReceiver_customValueOnLogger_works()
[all …]
/cts/common/device-side/bedstead/eventlib/src/main/java/com/android/eventlib/events/deviceadminreceivers/
DDeviceAdminUserStartedEvent.java42 public final class DeviceAdminUserStartedEvent extends Event { class
53 extends EventLogsQuery<DeviceAdminUserStartedEvent,
66 super(DeviceAdminUserStartedEvent.class, packageName); in DeviceAdminUserStartedEventQuery()
93 protected boolean filter(DeviceAdminUserStartedEvent event) { in filter()
108 return toStringBuilder(DeviceAdminUserStartedEvent.class, this) in describeQuery()
124 extends EventLogger<DeviceAdminUserStartedEvent> {
127 super(context, new DeviceAdminUserStartedEvent()); in DeviceAdminUserStartedEventLogger()
DDeviceAdminReceiverEvents.kt41 import com.android.eventlib.events.deviceadminreceivers.DeviceAdminUserStartedEvent.DeviceAdminUser…
/cts/common/device-side/bedstead/testapp/src/library/main/java/com/android/bedstead/testapp/
DTestAppEvents.kt90 import com.android.eventlib.events.deviceadminreceivers.DeviceAdminUserStartedEvent
91 import com.android.eventlib.events.deviceadminreceivers.DeviceAdminUserStartedEvent.DeviceAdminUser…
225 DeviceAdminUserStartedEvent.queryPackage(mTestApp.packageName()).onUser(mTestApp.user())
/cts/common/device-side/bedstead/eventlib/src/test/java/com/android/eventlib/premade/
DEventLibDeviceAdminReceiverTest.java60 import com.android.eventlib.events.deviceadminreceivers.DeviceAdminUserStartedEvent;
400 EventLogs<DeviceAdminUserStartedEvent> eventLogs = in userStarted_logsUserStartedEvent()
401 DeviceAdminUserStartedEvent.queryPackage(sContext.getPackageName()); in userStarted_logsUserStartedEvent()
/cts/common/device-side/bedstead/eventlib/src/main/java/com/android/eventlib/premade/
DEventLibDeviceAdminReceiver.kt48 import com.android.eventlib.events.deviceadminreceivers.DeviceAdminUserStartedEvent
248 val logger = DeviceAdminUserStartedEvent.logger(this, context, intent, startedUser) in onUserStarted()