Searched refs:scheduleAtFixedRate (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DScheduledExecutorService.java15 * execution. The {@code scheduleAtFixedRate} and
55 * scheduler.scheduleAtFixedRate(beeper, 10, 10, SECONDS);
139 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, method in interface:ScheduledExecutorService
H A DExecutors.java657 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) { method in class:Executors.DelegatedScheduledExecutorService
658 return e.scheduleAtFixedRate(command, initialDelay, period, unit);
H A DScheduledThreadPoolExecutor.java47 * {@link #scheduleAtFixedRate scheduleAtFixedRate} or
75 * {@code submit}, {@code schedule}, {@code scheduleAtFixedRate},
559 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, method in class:ScheduledThreadPoolExecutor
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DTimerTest.java738 * java.util.Timer#scheduleAtFixedRate(java.util.TimerTask, long,
749 t.scheduleAtFixedRate(testTask, 100, 100);
750 fail("scheduleAtFixedRate after Timer.cancel() should throw exception");
759 t.scheduleAtFixedRate(testTask, -100, 100);
760 fail("scheduleAtFixedRate with negative delay should throw IllegalArgumentException");
770 t.scheduleAtFixedRate(testTask, 100, -100);
771 fail("scheduleAtFixedRate with negative period should throw IllegalArgumentException");
779 t.scheduleAtFixedRate(testTask, 100, 100);
821 t.scheduleAtFixedRate(slowThenFastTask, 100, 100);
834 * java.util.Timer#scheduleAtFixedRate(jav
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DTimer.java323 public void scheduleAtFixedRate(TimerTask task, long delay, long period) { method in class:Timer
366 public void scheduleAtFixedRate(TimerTask task, Date firstTime, method in class:Timer
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DSamplingProfiler.java285 timer.scheduleAtFixedRate(sampler, 0, interval);
/libcore/jsr166-tests/src/test/java/jsr166/
H A DScheduledExecutorSubclassTest.java161 * scheduleAtFixedRate executes runnable after given initial delay
174 p.scheduleAtFixedRate(task, timeoutMillis(),
210 * scheduleAtFixedRate executes series of tasks at given rate.
224 p.scheduleAtFixedRate(task, 0, delay, MILLISECONDS);
360 * scheduleAtFixedRate throws RejectedExecutionException if shutdown
367 p.scheduleAtFixedRate(new NoOpRunnable(),
762 tasks.add(p.scheduleAtFixedRate(r, 9, 9, SECONDS));
833 periodics.add(p.scheduleAtFixedRate(countDowner(periodicLatch1),
H A DScheduledExecutorTest.java105 * scheduleAtFixedRate executes runnable after given initial delay
118 p.scheduleAtFixedRate(task, timeoutMillis(),
154 * scheduleAtFixedRate executes series of tasks at given rate.
168 p.scheduleAtFixedRate(task, 0, delay, MILLISECONDS);
304 * scheduleAtFixedRate throws RejectedExecutionException if shutdown
311 p.scheduleAtFixedRate(new NoOpRunnable(),
711 tasks.add(p.scheduleAtFixedRate(r, 9, 9, SECONDS));
782 periodics.add(p.scheduleAtFixedRate(countDowner(periodicLatch1),

Completed in 229 milliseconds