| /work/work-runtime/src/main/java/androidx/work/impl/background/systemalarm/ |
| D | CommandHandler.java | 72 Intent intent = new Intent(context, SystemAlarmService.class); in createScheduleWorkIntent() local 77 private static Intent writeWorkGenerationalId(@NonNull Intent intent, in writeWorkGenerationalId() 84 static WorkGenerationalId readWorkGenerationalId(@NonNull Intent intent) { in readWorkGenerationalId() 90 Intent intent = new Intent(context, SystemAlarmService.class); in createDelayMetIntent() local 96 Intent intent = new Intent(context, SystemAlarmService.class); in createStopWorkIntent() local 102 Intent intent = new Intent(context, SystemAlarmService.class); in createStopWorkIntent() local 108 Intent intent = new Intent(context, SystemAlarmService.class); in createConstraintsChangedIntent() local 114 Intent intent = new Intent(context, SystemAlarmService.class); in createRescheduleIntent() local 123 Intent intent = new Intent(context, SystemAlarmService.class); in createExecutionCompletedIntent() local 176 void onHandleIntent( in onHandleIntent() [all …]
|
| D | ConstraintProxyUpdateReceiver.java | 68 Intent intent = new Intent(ACTION); in newConstraintProxyUpdateIntent() local 82 public void onReceive(final @NonNull Context context, final @Nullable Intent intent) { in onReceive()
|
| D | RescheduleReceiver.java | 35 public void onReceive(Context context, Intent intent) { in onReceive()
|
| D | SystemAlarmService.java | 56 public int onStartCommand(Intent intent, int flags, int startId) { in onStartCommand()
|
| D | ConstraintProxy.java | 34 public void onReceive(Context context, Intent intent) { in onReceive()
|
| D | SystemAlarmDispatcher.java | 143 public boolean add(final @NonNull Intent intent, final int startId) { in add() 350 @NonNull Intent intent, in AddRunnable()
|
| D | ConstraintsCommandHandler.java | 88 Intent intent = CommandHandler.createDelayMetIntent(mContext, generationalId(workSpec)); in handleConstraintsChanged() local
|
| D | DelayMetCommandHandler.java | 178 Intent intent = CommandHandler.createConstraintsChangedIntent(mContext); in onExecuted() local
|
| /work/integration-tests/testapp/src/main/java/androidx/work/integration/testapp/ |
| D | RemoteService.kt | 177 val intent = Intent(context.applicationContext, RemoteService::class.java) in enqueueIntent() constant 183 val intent = Intent(context.applicationContext, RemoteService::class.java) in enqueueContinuationIntent() constant 189 val intent = Intent(context.applicationContext, RemoteService::class.java) in enqueueUniquePeriodicIntent() constant 195 val intent = Intent(context.applicationContext, RemoteService::class.java) in updateUniquePeriodicIntent() constant 201 val intent = Intent(context.applicationContext, RemoteService::class.java) in cancelWorkByTagIntent() constant 207 val intent = Intent(context.applicationContext, RemoteService::class.java) in cancelAllWorkIntent() constant 213 val intent = Intent(context.applicationContext, RemoteService::class.java) in queryWorkInfoIntent() constant
|
| /work/work-runtime/src/main/java/androidx/work/impl/foreground/ |
| D | SystemForegroundDispatcher.java | 215 void onStartCommand(@NonNull Intent intent) { in onStartCommand() 259 private void handleStartForeground(@NonNull Intent intent) { in handleStartForeground() 284 private void handleNotify(@NonNull Intent intent) { in handleNotify() 337 void handleStop(@NonNull Intent intent) { in handleStop() 345 private void handleCancelWork(@NonNull Intent intent) { in handleCancelWork() 377 Intent intent = new Intent(context, SystemForegroundService.class); in createStartForegroundIntent() local 398 Intent intent = new Intent(context, SystemForegroundService.class); in createCancelWorkIntent() local 419 Intent intent = new Intent(context, SystemForegroundService.class); in createNotifyIntent() local 436 Intent intent = new Intent(context, SystemForegroundService.class); in createStopForegroundIntent() local
|
| /work/work-runtime/src/androidTest/java/androidx/work/impl/foreground/ |
| D | SystemForegroundDispatcherTest.kt | 128 val intent = in testStartForeground_workSpecHasNoConstraints() constant 146 val intent = in testStartForeground_trackConstraints_workSpecHasConstraints() constant 168 val intent = createNotifyIntent(context, workSpecId, metadata) in testStartForeground() constant 180 val intent = createNotifyIntent(context, workSpecId, metadata) in testNotify() constant 380 val intent = in testStartForeground_trackConstraints_constraintsUnMet() constant 400 val intent = in testCancelForegroundWork() constant 425 val intent = in testStopForegroundWork() constant 451 val intent = in testUseRunningWork() constant 469 val intent = in testTimeoutForeground() constant
|
| /work/work-runtime/src/main/java/androidx/work/impl/constraints/trackers/ |
| D | StorageNotLowTracker.kt | 32 val intent = appContext.registerReceiver(null, intentFilter) in readSystemState() constant
|
| D | BatteryNotLowTracker.kt | 39 val intent = appContext.registerReceiver(null, intentFilter) in readSystemState() constant
|
| D | BatteryChargingTracker.kt | 38 val intent = appContext.registerReceiver(null, intentFilter) in readSystemState() constant
|
| /work/work-runtime/src/main/java/androidx/work/impl/utils/ |
| D | ForceStopRunnable.java | 372 Intent intent = getIntent(context); in getPendingIntent() local 381 Intent intent = new Intent(); in getIntent() local 414 public void onReceive(@NonNull Context context, @Nullable Intent intent) { in onReceive()
|
| D | WorkForegroundUpdater.java | 96 Intent intent = createNotifyIntent(context, generationalId(workSpec), in setForegroundAsync() local
|
| /work/work-multiprocess/src/main/java/androidx/work/multiprocess/ |
| D | RemoteWorkManagerService.java | 45 public @Nullable IBinder onBind(@NonNull Intent intent) { in onBind()
|
| D | RemoteWorkerService.java | 42 public @Nullable IBinder onBind(@NonNull Intent intent) { in onBind()
|
| D | ListenableWorkerImplClient.java | 80 Intent intent = new Intent(); in getListenableWorkerImpl() local
|
| /work/work-runtime/src/main/java/androidx/work/impl/diagnostics/ |
| D | DiagnosticsReceiver.java | 41 public void onReceive(@NonNull Context context, @Nullable Intent intent) { in onReceive()
|
| /work/work-runtime/src/androidTest/java/androidx/work/impl/background/systemalarm/ |
| D | SystemAlarmDispatcherTest.java | 226 final Intent intent = CommandHandler.createScheduleWorkIntent(mContext, workSpecId); in testSchedule() local 242 final Intent intent = CommandHandler.createScheduleWorkIntent(mContext, workSpecId); in testSchedule_whenOriginalWorkDoesNotExist() local 259 final Intent intent = CommandHandler.createDelayMetIntent(mContext, workSpecId); in testDelayMet_success() local 277 final Intent intent = CommandHandler.createDelayMetIntent(mContext, workSpecId); in testDelayMet_noWorkSpec() local 776 public boolean add(@NonNull Intent intent, int startId) { in add() 792 private void update(Intent intent) { in update()
|
| /work/work-runtime/src/androidTest/java/androidx/work/impl/constraints/trackers/ |
| D | BatteryChargingTrackerTest.java | 68 Intent intent = new Intent(Intent.ACTION_BATTERY_CHANGED); in createBatteryChangedIntent() local
|
| D | BatteryNotLowTrackerTest.java | 75 Intent intent = new Intent(Intent.ACTION_BATTERY_CHANGED); in createBatteryChangedIntent() local
|
| /work/work-multiprocess/src/androidTest/java/androidx/work/multiprocess/ |
| D | RemoteWorkManagerClientTest.kt | 94 val intent = mock(Intent::class.java) in <lambda>() constant
|
| /work/work-runtime/src/main/java/androidx/work/impl/ |
| D | Processor.java | 203 Intent intent = createStartForegroundIntent(mAppContext, in startForeground() local 395 Intent intent = createStopForegroundIntent(mAppContext); in stopForegroundService() local
|