HomeSort by relevance Sort by last modified time
    Searched defs:schedule (Results 1 - 25 of 409) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/main/java/org/junit/runners/model/
RunnerScheduler.java 13 * Schedule a child statement to run
15 void schedule(Runnable childStatement); method in interface:RunnerScheduler
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/
Scheduler.java 38 * Schedule the given {@link WorkSpec}s for background execution. The Scheduler does NOT need
41 * @param workSpecs The array of {@link WorkSpec}s to schedule
44 void schedule(WorkSpec... workSpecs); method in interface:Scheduler
  /libcore/ojluni/src/main/java/java/util/concurrent/
ScheduledExecutorService.java 39 * An {@link ExecutorService} that can schedule commands to run after a given
42 * <p>The {@code schedule} methods create tasks with various delays
51 * periods) are also allowed in {@code schedule} methods, and are
54 * <p>All {@code schedule} methods accept <em>relative</em> delays and
57 * java.util.Date} to the required form. For example, to schedule at
58 * a certain future {@code date}, you can use: {@code schedule(task,
85 * scheduler.schedule(new Runnable() {
110 public ScheduledFuture<?> schedule(Runnable command, method in interface:ScheduledExecutorService
126 public <V> ScheduledFuture<V> schedule(Callable<V> callable, method in interface:ScheduledExecutorService
  /device/google/cuttlefish_common/guest/monitoring/vsoc_service/java/com/android/google/gce/gceservice/
JobExecutor.java 42 /** Schedule job for (periodic) execution.
49 public void schedule(final JobBase job, final GceFuture<?>... futures) { method in class:JobExecutor
50 mExecutor.schedule(new Runnable() {
98 mExecutor.schedule(this, delaySeconds, TimeUnit.SECONDS);
  /packages/apps/Dialer/java/com/android/voicemail/impl/
StatusCheckJobService.java 39 public static void schedule(Context context) { method in class:StatusCheckJobService
42 VvmLog.i("StatusCheckJobService.schedule", "job already scheduled");
46 jobScheduler.schedule(
  /external/guava/guava/src/com/google/common/util/concurrent/
ListeningScheduledExecutorService.java 40 ListenableScheduledFuture<?> schedule( method in interface:ListeningScheduledExecutorService
45 <V> ListenableScheduledFuture<V> schedule( method in interface:ListeningScheduledExecutorService
WrappingScheduledExecutorService.java 41 public final ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { method in class:WrappingScheduledExecutorService
42 return delegate.schedule(wrapTask(command), delay, unit);
46 public final <V> ScheduledFuture<V> schedule(Callable<V> task, long delay, TimeUnit unit) { method in class:WrappingScheduledExecutorService
47 return delegate.schedule(wrapTask(task), delay, unit);
  /packages/apps/Contacts/src/com/android/contacts/util/concurrent/
FuturesUtil.java 41 executor.schedule(new Runnable() {
  /frameworks/base/services/core/java/com/android/server/net/watchlist/
ReportWatchlistJobService.java 60 * Schedule the {@link ReportWatchlistJobService} to run periodically.
62 public static void schedule(Context context) { method in class:ReportWatchlistJobService
66 scheduler.schedule(new JobInfo.Builder(REPORT_WATCHLIST_RECORDS_JOB_ID,
68 //.setOverrideDeadline(45 * 1000) // Schedule job soon, for testing.
  /frameworks/base/services/core/java/com/android/server/camera/
CameraStatsJobService.java 63 public static void schedule(Context context) { method in class:CameraStatsJobService
70 js.schedule(new JobInfo.Builder(CAMERA_REPORTING_JOB_ID, sCameraStatsJobServiceName)
  /external/autotest/server/
sequence.py 6 Adds ability to schedule jobs on given machines.
118 def schedule(self, job, timeout_mins, machine): member in class:SequenceJob
122 Will schedule a given test on the job machine(s).
166 Schedule the tests to run
178 timeout_mins += test.schedule(job, timeout_mins, machine)
  /external/autotest/site_utils/
test_runner_utils_unittest.py 184 def schedule(self, *args, **kwargs): member in class:TestRunnerUnittests.test_perform_local_run.fake_suite
  /external/jmdns/src/javax/jmdns/impl/tasks/
RecordReaper.java 43 timer.schedule(this, DNSConstants.RECORD_REAPER_INTERVAL, DNSConstants.RECORD_REAPER_INTERVAL);
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
CancelCall.java 39 // Schedule a job to cancel the call in 1 second.
40 executor.schedule(new Runnable() {
  /external/python/cpython2/Lib/idlelib/
ToolTip.py 20 self.schedule()
26 def schedule(self): member in class:ToolTipBase
  /external/python/cpython3/Lib/idlelib/
tooltip.py 20 self.schedule()
26 def schedule(self): member in class:ToolTipBase
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
RobolectricBackgroundExecutorService.java 43 return schedule(new FutureTask<T>(tCallable));
48 return schedule(new FutureTask<T>(runnable, t));
56 private <T> Future<T> schedule(final FutureTask<T> futureTask) { method in class:RobolectricBackgroundExecutorService
  /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_;
  /frameworks/base/core/java/android/app/
JobSchedulerImpl.java 42 public int schedule(JobInfo job) { method in class:JobSchedulerImpl
44 return mBinder.schedule(job);
  /frameworks/base/core/java/android/app/job/
JobScheduler.java 40 * JobScheduler with {@link #schedule(JobInfo)}. When the criteria declared are met, the
71 * Returned from {@link #schedule(JobInfo)} when an invalid parameter was supplied. This can occur
77 * Returned from {@link #schedule(JobInfo)} if this job has been successfully scheduled.
82 * Schedule a job to be executed. Will replace any currently scheduled job with the same
88 * you can schedule.
89 * @return the result of the schedule request.
91 public abstract @Result int schedule(@NonNull JobInfo job); method in class:JobScheduler
94 * Similar to {@link #schedule}, but allows you to enqueue work for a new <em>or existing</em>
106 * enqueue. This will allow the system to optimally schedule work along with any pending
124 * you can schedule
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DozePauser.java 44 mPauseTimeout.schedule(mPolicy.proxScreenOffDelayMs,
  /frameworks/base/services/core/java/com/android/server/
PruneInstantAppsJobService.java 38 public static void schedule(Context context) { method in class:PruneInstantAppsJobService
46 jobScheduler.schedule(pruneJob);
  /frameworks/base/services/core/java/com/android/server/am/
ClientLifecycleManager.java 39 * Schedule a transaction, which may consist of multiple callbacks and a lifecycle request.
47 transaction.schedule();
57 * Schedule a single lifecycle request or callback to client activity.
73 * Schedule a single callback delivery to client activity.
89 * Schedule a single callback delivery to client application.
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/background/systemalarm/
SystemAlarmScheduler.java 45 public void schedule(WorkSpec... workSpecs) { method in class:SystemAlarmScheduler
  /hardware/interfaces/broadcastradio/common/utils/
WorkerThread.cpp 51 void WorkerThread::schedule(function<void()> task, milliseconds delay) { function in class:android::WorkerThread
84 lk.unlock(); // what() might need to schedule another task

Completed in 777 milliseconds

1 2 3 4 5 6 7 8 91011>>