Searched refs:ScheduledFuture (Results 1 – 11 of 11) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ScheduledExecutorService.java | 110 public ScheduledFuture<?> schedule(Runnable command, in schedule() 126 public <V> ScheduledFuture<V> schedule(Callable<V> callable, in schedule() 168 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate() 208 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, in scheduleWithFixedDelay()
|
D | ScheduledFuture.java | 47 public interface ScheduledFuture<V> extends Delayed, Future<V> { interface
|
D | RunnableScheduledFuture.java | 48 public interface RunnableScheduledFuture<V> extends RunnableFuture<V>, ScheduledFuture<V> {
|
D | Executors.java | 690 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { 693 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { 696 …public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, Ti… 699 …public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, …
|
D | ScheduledThreadPoolExecutor.java | 553 public ScheduledFuture<?> schedule(Runnable command, in schedule() 570 public <V> ScheduledFuture<V> schedule(Callable<V> callable, in schedule() 588 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate() 613 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, in scheduleWithFixedDelay()
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | ScheduledExecutorTest.java | 27 import java.util.concurrent.ScheduledFuture; 117 ScheduledFuture f = in testSchedule4() 139 ScheduledFuture f = in testSchedule5() 167 final ScheduledFuture periodicTask = in testFixedRateSequence() 213 final ScheduledFuture periodicTask = in testFixedDelaySequence() 587 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testGetQueue() 610 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testRemove() 638 final ScheduledFuture[] tasks = new ScheduledFuture[5]; in testPurge() 640 for (ScheduledFuture task : tasks) in testPurge() 707 List<ScheduledFuture> tasks = new ArrayList<>(); in testShutdownNow_delayedTasks() [all …]
|
D | ScheduledExecutorSubclassTest.java | 28 import java.util.concurrent.ScheduledFuture; 173 ScheduledFuture f = in testSchedule4() 195 ScheduledFuture f = in testSchedule5() 223 final ScheduledFuture periodicTask = in testFixedRateSequence() 269 final ScheduledFuture periodicTask = in testFixedDelaySequence() 639 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testGetQueue() 662 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testRemove() 690 final ScheduledFuture[] tasks = new ScheduledFuture[5]; in testPurge() 692 for (ScheduledFuture task : tasks) in testPurge() 758 List<ScheduledFuture> tasks = new ArrayList<>(); in testShutdownNow_delayedTasks() [all …]
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | ScheduledExecutorTest.java | 52 import java.util.concurrent.ScheduledFuture; 139 ScheduledFuture f = in testSchedule4() 161 ScheduledFuture f = in testSchedule5() 189 final ScheduledFuture periodicTask = in testFixedRateSequence() 235 final ScheduledFuture periodicTask = in testFixedDelaySequence() 608 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testGetQueue() 631 ScheduledFuture[] tasks = new ScheduledFuture[5]; in testRemove() 659 final ScheduledFuture[] tasks = new ScheduledFuture[5]; in testPurge() 661 for (ScheduledFuture task : tasks) in testPurge() 728 List<ScheduledFuture> tasks = new ArrayList<>(); in testShutdownNow_delayedTasks() [all …]
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | Executors.java | 276 public java.util.concurrent.ScheduledFuture<?> schedule( in schedule() 281 public <V> java.util.concurrent.ScheduledFuture<V> schedule( in schedule() 288 public java.util.concurrent.ScheduledFuture<?> scheduleAtFixedRate( in scheduleAtFixedRate() 296 public java.util.concurrent.ScheduledFuture<?> scheduleWithFixedDelay( in scheduleWithFixedDelay()
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
D | PollingWatchService.java | 235 private ScheduledFuture<?> poller;
|
/libcore/ |
D | openjdk_java_files.bp | 979 "ojluni/src/main/java/java/util/concurrent/ScheduledFuture.java",
|