HomeSort by relevance Sort by last modified time
    Searched refs:schedule (Results 201 - 225 of 661) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/jsr166-tests/src/test/java/jsr166/
ScheduledExecutorTest.java 64 * delayed schedule of callable successfully executes after delay
77 Future f = p.schedule(task, timeoutMillis(), MILLISECONDS);
85 * delayed schedule of runnable successfully executes after delay
97 Future f = p.schedule(task, timeoutMillis(), MILLISECONDS);
242 * schedule(null) throws NPE
249 Future f = p.schedule(callable, SHORT_DELAY_MS, MILLISECONDS);
263 p.schedule(new NoOpRunnable(),
272 * schedule throws RejectedExecutionException if shutdown
279 p.schedule(new NoOpCallable(),
288 * schedule callable throws RejectedExecutionException if shutdow
    [all...]
ExecutorsTest.java 211 Future f = p.schedule(Executors.callable(task, Boolean.TRUE),
235 Future f = p.schedule(Executors.callable(task, Boolean.TRUE),
261 Future f = p.schedule(Executors.callable(task, Boolean.TRUE),
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/jobscheduler/
ChargingConstraintTestActivity.java 166 mJobScheduler.schedule(runOnCharge);
189 mJobScheduler.schedule(delayConstraintAndUnexpiredDeadline);
IdleConstraintTestActivity.java 52 * Id for the job that we schedule when the device is not in idle mode. This job is expected
57 * Id for the job that we schedule when the device *is* in idle mode. This job is expected to
190 * Schedule a job with an idle constraint and verify that it doesn't execute.
198 mJobScheduler.schedule(
215 * Schedule a job with an idle constraint and verify that it executes.
223 mJobScheduler.schedule(
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/util/
TvUtil.java 166 scheduler.schedule(builder.build());
197 scheduler.schedule(builder.build());
  /external/v8/src/compiler/
effect-control-linearizer.h 28 class Schedule;
33 EffectControlLinearizer(JSGraph* graph, Schedule* schedule, Zone* temp_zone,
140 Schedule* schedule() const { return schedule_; } function in class:v8::internal::compiler::EffectControlLinearizer
149 Schedule* schedule_;
machine-graph-verifier.cc 13 #include "src/compiler/schedule.h"
24 MachineRepresentationInferrer(Schedule const* schedule, Graph const* graph,
26 : schedule_(schedule),
271 Schedule const* const schedule_;
279 Schedule const* const schedule,
282 : schedule_(schedule),
800 Schedule const* const schedule_;
808 void MachineGraphVerifier::Run(Graph* graph, Schedule const* const schedule
    [all...]
  /frameworks/base/services/core/java/com/android/server/storage/
DiskStatsLoggingService.java 98 public static void schedule(Context context) { method in class:DiskStatsLoggingService
101 js.schedule(new JobInfo.Builder(JOB_DISKSTATS_LOGGING, sDiskStatsLoggingService)
  /libcore/ojluni/src/main/java/sun/nio/ch/
AsynchronousChannelGroupImpl.java 200 final Future<?> schedule(Runnable task, long timeout, TimeUnit unit) {
202 return timeoutExecutor.schedule(task, timeout, unit);
  /packages/apps/Contacts/src/com/android/contacts/util/concurrent/
ContactsExecutors.java 111 public ScheduledFuture<?> schedule(final Runnable command, long delay, TimeUnit unit) { method in class:ContactsExecutors.HandlerExecutorService
120 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { method in class:ContactsExecutors.HandlerExecutorService
  /packages/apps/TV/src/com/android/tv/dvr/ui/
DvrUiHelper.java 116 * Shows the schedule dialog.
143 * Shows the dialog which says that the new schedule conflicts with others.
292 * Handles the action to create the new schedule. It returns {@code true} if the schedule is
309 // Show recorded program rather than the schedule.
330 // Just add the schedule.
415 * Shows the schedules activity with full schedule.
541 ScheduledRecording schedule = (ScheduledRecording) dvrItem; local
542 recordingId = schedule.getId();
543 if (schedule.getState() == ScheduledRecording.STATE_RECORDING_NOT_STARTED)
    [all...]
  /packages/apps/TV/tests/unit/src/com/android/tv/dvr/provider/
DvrDbSyncTest.java 135 private void addSchedule(long programId, ScheduledRecording schedule) {
136 when(mDataManager.getScheduledRecordingForProgramId(programId)).thenReturn(schedule);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
compile.go 366 {name: "layout", fn: layout, required: true}, // schedule blocks
367 {name: "schedule", fn: schedule, required: true}, // schedule values
419 {"schedule", "regalloc"},
424 {"schedule", "late nilcheck"},
426 {"schedule", "flagalloc"},
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
compile.go 366 {name: "layout", fn: layout, required: true}, // schedule blocks
367 {name: "schedule", fn: schedule, required: true}, // schedule values
419 {"schedule", "regalloc"},
424 {"schedule", "late nilcheck"},
426 {"schedule", "flagalloc"},
  /external/ImageMagick/MagickCore/
image-view.c 251 #pragma omp parallel for schedule(static,4) shared(progress,status) \
569 #pragma omp parallel for schedule(static,4) shared(progress,status) \
    [all...]
attribute.c 179 #pragma omp parallel for schedule(static,4) shared(status) \
315 #pragma omp parallel for schedule(static,4) shared(status) \
392 #pragma omp parallel for schedule(static,4) shared(status) \
449 #pragma omp parallel for schedule(static,4) shared(status) \
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_sched.c 38 * instruction to schedule from the deepest instruction (recursing through
51 * to schedule any remaining instructions that use that value first.
80 schedule(struct ir3_sched_ctx *ctx, struct ir3_instruction *instr) function
232 /* Check if instruction is ok to schedule. Make sure it is not blocked
289 * to schedule the bary.f's outside of any block which
309 /* Find the best instruction to schedule from specified instruction or
368 /* find instruction to schedule: */
509 /* first a pre-pass to schedule all meta:input/phi instructions
515 schedule(ctx, instr);
539 schedule(ctx, instr)
    [all...]
  /development/ndk/platforms/android-9/include/linux/raid/
md_k.h 180 #define __wait_event_lock_irq(wq, condition, lock, cmd) do { wait_queue_t __wait; init_waitqueue_entry(&__wait, current); add_wait_queue(&wq, &__wait); for (;;) { set_current_state(TASK_UNINTERRUPTIBLE); if (condition) break; spin_unlock_irq(&lock); cmd; schedule(); spin_lock_irq(&lock); } current->state = TASK_RUNNING; remove_wait_queue(&wq, &__wait); } while (0)
  /external/ImageMagick/www/source/
analyze.c 150 #pragma omp parallel for schedule(dynamic,4) shared(status)
  /external/clang/test/OpenMP/
parallel_for_simd_codegen.cpp 69 #pragma omp parallel for simd linear(k : 3) schedule(dynamic)
  /external/guava/guava/src/com/google/common/util/concurrent/
MoreExecutors.java 565 public ListenableScheduledFuture<?> schedule( method in class:MoreExecutors.ScheduledListeningDecorator
569 ScheduledFuture<?> scheduled = delegate.schedule(task, delay, unit);
574 public <V> ListenableScheduledFuture<V> schedule( method in class:MoreExecutors.ScheduledListeningDecorator
577 ScheduledFuture<?> scheduled = delegate.schedule(task, delay, unit);
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
MapMaker.java 119 timer.schedule((int) expirationMillis);
  /external/ipsec-tools/
Android.mk 44 src/racoon/schedule.c \
  /external/jmdns/src/javax/jmdns/impl/tasks/
Responder.java 91 timer.schedule(this, delay);
  /external/llvm/lib/CodeGen/
PostRASchedulerList.cpp 11 // The basic approach uses a priority queue of available nodes to schedule.
13 // order), checked for legality to schedule, and emitted if legal.
15 // Nodes may not be legal to schedule either due to structural hazards (e.g.
67 // If DebugDiv > 0 then only schedule MBB with (ID % DebugDiv) == DebugMod
134 /// The schedule. Null SUnit*'s represent noop instructions.
172 /// Schedule - Schedule the instruction range using list scheduling.
174 void schedule() override;
244 /// Print the schedule before exiting the region.
247 dbgs() << "*** Final schedule ***\n"
391 void SchedulePostRATDList::schedule() { function in class:SchedulePostRATDList
    [all...]

Completed in 672 milliseconds

1 2 3 4 5 6 7 891011>>