Home
last modified time | relevance | path

Searched refs:scheduleAtFixedRate (Results 1 – 9 of 9) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DTimerTest.java749 t.scheduleAtFixedRate(testTask, 100, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskJJ()
759 t.scheduleAtFixedRate(testTask, -100, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskJJ()
770 t.scheduleAtFixedRate(testTask, 100, -100); in test_scheduleAtFixedRateLjava_util_TimerTaskJJ()
779 t.scheduleAtFixedRate(testTask, 100, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskJJ()
821 t.scheduleAtFixedRate(slowThenFastTask, 100, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskJJ()
846 t.scheduleAtFixedRate(testTask, d, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskLjava_util_DateJ()
857 t.scheduleAtFixedRate(testTask, d, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskLjava_util_DateJ()
868 t.scheduleAtFixedRate(testTask, d, -100); in test_scheduleAtFixedRateLjava_util_TimerTaskLjava_util_DateJ()
878 t.scheduleAtFixedRate(testTask, null, 100); in test_scheduleAtFixedRateLjava_util_TimerTaskLjava_util_DateJ()
888 t.scheduleAtFixedRate(null, d, 10); in test_scheduleAtFixedRateLjava_util_TimerTaskLjava_util_DateJ()
[all …]
/libcore/ojluni/src/main/java/java/util/concurrent/
DScheduledExecutorService.java168 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate() method
DExecutors.java696 …public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, Ti…
697 return e.scheduleAtFixedRate(command, initialDelay, period, unit);
DScheduledThreadPoolExecutor.java588 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate() method in ScheduledThreadPoolExecutor
/libcore/ojluni/src/main/java/java/util/
DTimer.java330 public void scheduleAtFixedRate(TimerTask task, long delay, long period) { in scheduleAtFixedRate() method in Timer
373 public void scheduleAtFixedRate(TimerTask task, Date firstTime, in scheduleAtFixedRate() method in Timer
/libcore/jsr166-tests/src/test/java/jsr166/
DScheduledExecutorTest.java118 p.scheduleAtFixedRate(task, timeoutMillis(), in testSchedule4()
168 p.scheduleAtFixedRate(task, 0, delay, MILLISECONDS); in testFixedRateSequence()
311 p.scheduleAtFixedRate(new NoOpRunnable(), in testScheduleAtFixedRate1_RejectedExecutionException()
711 tasks.add(p.scheduleAtFixedRate(r, 9, 9, SECONDS)); in testShutdownNow_delayedTasks()
782 periodics.add(p.scheduleAtFixedRate(countDowner(periodicLatch1), in testShutdown_cancellation()
DScheduledExecutorSubclassTest.java174 p.scheduleAtFixedRate(task, timeoutMillis(), in testSchedule4()
224 p.scheduleAtFixedRate(task, 0, delay, MILLISECONDS); in testFixedRateSequence()
367 p.scheduleAtFixedRate(new NoOpRunnable(), in testScheduleAtFixedRate1_RejectedExecutionException()
762 tasks.add(p.scheduleAtFixedRate(r, 9, 9, SECONDS)); in testShutdownNow_delayedTasks()
833 periodics.add(p.scheduleAtFixedRate(countDowner(periodicLatch1), in testShutdown_cancellation()
/libcore/ojluni/src/main/java/sun/nio/fs/
DPollingWatchService.java290 .scheduleAtFixedRate(thunk, period, period, TimeUnit.SECONDS);
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/
DExecutors.java288 public java.util.concurrent.ScheduledFuture<?> scheduleAtFixedRate( in scheduleAtFixedRate() method in Executors.DelegatedScheduledExecutorService