Searched refs:isShutdown (Results 1 - 12 of 12) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DExecutorService.java149 boolean isShutdown(); method in interface:ExecutorService
H A DScheduledThreadPoolExecutor.java304 if (isShutdown())
308 if (isShutdown() &&
667 if (!value && isShutdown())
699 if (!value && isShutdown())
H A DExecutors.java594 public boolean isShutdown() { return e.isShutdown(); } method in class:Executors.DelegatedExecutorService
H A DThreadPoolExecutor.java1419 public boolean isShutdown() { method in class:ThreadPoolExecutor
2025 if (!e.isShutdown()) {
2096 if (!e.isShutdown()) {
H A DForkJoinPool.java3193 public boolean isShutdown() { method in class:ForkJoinPool
/libcore/jsr166-tests/src/test/java/jsr166/
H A DForkJoinPool8Test.java47 assertFalse(ForkJoinPool.commonPool().isShutdown());
51 assertFalse(ForkJoinPool.commonPool().isShutdown());
55 assertFalse(ForkJoinPool.commonPool().isShutdown());
1509 assertFalse(p.isShutdown());
1522 assertFalse(p.isShutdown());
1534 assertFalse(p.isShutdown());
1565 assertFalse(p.isShutdown());
1585 assertFalse(p.isShutdown());
H A DAbstractExecutorServiceTest.java56 public boolean isShutdown() { return shutdown; } method in class:AbstractExecutorServiceTest.DirectExecutorService
57 public boolean isTerminated() { return isShutdown(); }
59 return isShutdown();
H A DForkJoinPoolTest.java180 assertFalse(p.isShutdown());
318 assertFalse(p.isShutdown());
332 assertFalse(p.isShutdown());
359 assertTrue(p.isShutdown());
H A DScheduledExecutorSubclassTest.java571 * isShutdown is false before shutdown, true after
576 assertFalse(p.isShutdown());
578 assertTrue(p.isShutdown());
743 assertTrue(p.isShutdown());
773 assertTrue(p.isShutdown());
842 assertTrue(p.isShutdown());
H A DScheduledExecutorTest.java516 * isShutdown is false before shutdown, true after
522 assertFalse(p.isShutdown());
527 assertTrue(p.isShutdown());
692 assertTrue(p.isShutdown());
722 assertTrue(p.isShutdown());
791 assertTrue(p.isShutdown());
H A DThreadPoolExecutorSubclassTest.java585 * isShutdown is false before shutdown, true after
593 assertFalse(p.isShutdown());
595 assertTrue(p.isShutdown());
791 assertTrue(p.isShutdown());
1405 assertTrue(p.isShutdown());
H A DThreadPoolExecutorTest.java438 * isShutdown is false before shutdown, true after
446 assertFalse(p.isShutdown());
448 assertTrue(p.isShutdown());
676 assertTrue(p.isShutdown());
1412 assertTrue(p.isShutdown());

Completed in 207 milliseconds