Home
last modified time | relevance | path

Searched refs:terminatedCalled (Results 1 – 2 of 2) sorted by relevance

/libcore/jsr166-tests/src/test/java/jsr166/
DThreadPoolExecutorTest.java22 final CountDownLatch terminatedCalled = new CountDownLatch(1); field in ThreadPoolExecutorTest.ExtendedTPE
34 terminatedCalled.countDown(); in terminated()
43 public boolean terminatedCalled() { in terminatedCalled() method in ThreadPoolExecutorTest.ExtendedTPE
44 return terminatedCalled.getCount() == 0; in terminatedCalled()
1363 assertTrue(p.terminatedCalled()); in testTerminated()
DThreadPoolExecutorSubclassTest.java162 final CountDownLatch terminatedCalled = new CountDownLatch(1); field in ThreadPoolExecutorSubclassTest.CustomTPE
174 terminatedCalled.countDown(); in terminated()
183 public boolean terminatedCalled() { in terminatedCalled() method in ThreadPoolExecutorSubclassTest.CustomTPE
184 return terminatedCalled.getCount() == 0; in terminatedCalled()
1236 assertTrue(p.terminatedCalled()); in testTerminated()