Home
last modified time | relevance | path

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

/libcore/jsr166-tests/src/test/java/jsr166/
DThreadPoolExecutorSubclassTest.java198 final CountDownLatch beforeCalled = new CountDownLatch(1); field in ThreadPoolExecutorSubclassTest.CustomTPE
206 beforeCalled.countDown(); in beforeExecute()
215 public boolean beforeCalled() { in beforeCalled() method in ThreadPoolExecutorSubclassTest.CustomTPE
216 return beforeCalled.getCount() == 0; in beforeCalled()
1423 assertTrue(p.beforeCalled()); in testBeforeAfter()
DThreadPoolExecutorTest.java51 final CountDownLatch beforeCalled = new CountDownLatch(1); field in ThreadPoolExecutorTest.ExtendedTPE
59 beforeCalled.countDown(); in beforeExecute()
68 public boolean beforeCalled() { in beforeCalled() method in ThreadPoolExecutorTest.ExtendedTPE
69 return beforeCalled.getCount() == 0; in beforeCalled()
1430 assertTrue(p.beforeCalled()); in testBeforeAfter()