/libcore/jsr166-tests/src/test/java/jsr166/ |
D | ThreadPoolExecutorTest.java | 96 final CountDownLatch done = new CountDownLatch(1); in testExecute() local 98 public void realRun() { done.countDown(); }}; in testExecute() 100 assertTrue(done.await(LONG_DELAY_MS, MILLISECONDS)); in testExecute() 109 final CountDownLatch done = new CountDownLatch(1); in testGetActiveCount() local 114 try (PoolCleaner cleaner = cleaner(p, done)) { in testGetActiveCount() argument 121 await(done); in testGetActiveCount() 336 final CountDownLatch done = new CountDownLatch(1); in testGetLargestPoolSize() local 341 try (PoolCleaner cleaner = cleaner(p, done)) { in testGetLargestPoolSize() argument 348 await(done); in testGetLargestPoolSize() 380 final CountDownLatch done = new CountDownLatch(1); in testGetPoolSize() local [all …]
|
D | ThreadPoolExecutorSubclassTest.java | 57 boolean done; field in ThreadPoolExecutorSubclassTest.CustomTask 72 lock.lock(); try { return done; } finally { lock.unlock() ; } in isDone() 80 if (!done) { in cancel() 82 done = true; in cancel() 94 if (done) in run() 109 if (!done) { in run() 112 done = true; in run() 122 while (!done) in get() 137 while (!done) { in get() 243 final CountDownLatch done = new CountDownLatch(1); in testExecute() local [all …]
|
D | ScheduledExecutorSubclassTest.java | 112 final CountDownLatch done = new CountDownLatch(1); in testExecute() local 114 public void realRun() { done.countDown(); }}; in testExecute() 116 await(done); in testExecute() 124 final CountDownLatch done = new CountDownLatch(1); in testSchedule1() local 126 try (PoolCleaner cleaner = cleaner(p, done)) { in testSchedule1() argument 130 done.countDown(); in testSchedule1() 147 final CountDownLatch done = new CountDownLatch(1); in testSchedule3() local 150 done.countDown(); in testSchedule3() 154 await(done); in testSchedule3() 167 final CountDownLatch done = new CountDownLatch(1); in testSchedule4() local [all …]
|
D | ScheduledExecutorTest.java | 55 final CountDownLatch done = new CountDownLatch(1); in testExecute() local 57 public void realRun() { done.countDown(); }}; in testExecute() 59 assertTrue(done.await(LONG_DELAY_MS, MILLISECONDS)); in testExecute() 70 final CountDownLatch done = new CountDownLatch(1); in testSchedule1() local 73 done.countDown(); in testSchedule1() 80 assertTrue(done.await(0L, MILLISECONDS)); in testSchedule1() 91 final CountDownLatch done = new CountDownLatch(1); in testSchedule3() local 94 done.countDown(); in testSchedule3() 98 await(done); in testSchedule3() 111 final CountDownLatch done = new CountDownLatch(1); in testSchedule4() local [all …]
|
D | ExecutorCompletionServiceTest.java | 162 final AtomicBoolean done = new AtomicBoolean(false); in testNewTaskForCallable() local 165 protected void done() { done.set(true); } in testNewTaskForCallable() method in ExecutorCompletionServiceTest.MyCallableFuture 184 assertTrue("completed task must have set done", done.get()); in testNewTaskForCallable() 193 final AtomicBoolean done = new AtomicBoolean(false); in testNewTaskForRunnable() local 196 protected void done() { done.set(true); } in testNewTaskForRunnable() method in ExecutorCompletionServiceTest.MyRunnableFuture 215 assertTrue("completed task must have set done", done.get()); in testNewTaskForRunnable()
|
D | Collection8Test.java | 79 final AtomicBoolean done = new AtomicBoolean(false); in testForEachConcurrentStressTest() local 83 try (PoolCleaner cleaner = cleaner(pool, done)) { in testForEachConcurrentStressTest() argument 87 while (!done.get()) in testForEachConcurrentStressTest() 91 while (!done.get()) { in testForEachConcurrentStressTest()
|
D | ForkJoinPoolTest.java | 221 final CountDownLatch done = new CountDownLatch(1); in testGetPoolSize() local 230 done.await(); in testGetPoolSize() 236 done.countDown(); in testGetPoolSize() 387 final CountDownLatch done = new CountDownLatch(1); 390 ForkJoinTask a = p.submit(awaiter(done)); 391 ForkJoinTask b = p.submit(awaiter(done)); 392 ForkJoinTask c = p.submit(awaiter(done)); 396 done.countDown(); 404 final CountDownLatch done = new CountDownLatch(1); 407 ForkJoinTask a = p.submit(awaiter(done)); [all …]
|
D | JSR166TestCase.java | 1602 private volatile boolean done = false; 1603 public boolean isDone() { return done; } 1607 done = true; 1614 public volatile boolean done = false; 1618 done = true; 1624 public volatile boolean done = false; 1628 done = true; 1634 public volatile boolean done = false; 1638 done = true; 1644 public volatile boolean done = false; [all …]
|
D | ExecutorsTest.java | 309 final CountDownLatch done = new CountDownLatch(1); in testDefaultThreadFactory() local 327 done.countDown(); in testDefaultThreadFactory() 332 await(done); in testDefaultThreadFactory() 342 final CountDownLatch done = new CountDownLatch(1); in testPrivilegedThreadFactory() local 364 done.countDown(); in testPrivilegedThreadFactory() 369 await(done); in testPrivilegedThreadFactory()
|
D | AtomicIntegerArrayTest.java | 288 boolean done = true; in realRun() 293 done = false; in realRun() 298 if (done) in realRun()
|
D | AtomicLongArrayTest.java | 287 boolean done = true; in realRun() 292 done = false; in realRun() 297 if (done) in realRun()
|
D | CyclicBarrierTest.java | 306 final AtomicBoolean done = new AtomicBoolean(); in testReset_Leakage() local 309 while (!done.get()) { in testReset_Leakage() 325 done.set(true); in testReset_Leakage()
|
D | ForkJoinTask8Test.java | 1175 final CountDownLatch done = new CountDownLatch(1); 1176 final ForkJoinTask a = ForkJoinTask.adapt(awaiter(done)); 1177 final ForkJoinTask b = ForkJoinTask.adapt(awaiter(done)); 1178 final ForkJoinTask c = ForkJoinTask.adapt(awaiter(done)); 1180 try (PoolCleaner cleaner = cleaner(p, done)) {
|
/libcore/ojluni/src/main/java/javax/crypto/ |
D | ExemptionMechanism.java | 64 private boolean done = false; field in ExemptionMechanism 260 if (done && (key != null)) { in isCryptoAllowed() 316 done = false; in init() 348 done = false; in init() 380 done = false; in init() 405 done = true; in genExemptionBlob() 438 done = true; in genExemptionBlob() 474 done = true; in genExemptionBlob()
|
D | CipherInputStream.java | 80 private boolean done = false; field in CipherInputStream 102 if (done) return -1; in getMoreData() 105 done = true; in getMoreData()
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | ThreadTest.java | 113 assertTrue("Threads already finished", !t1.done && !t2.done); in testThreadWakeup() 119 assertTrue("Threads did not finish", t1.done && t2.done); in testThreadWakeup() 197 public boolean done; field in WakeupTestThread 200 done = false; in run() 208 done = true; in run()
|
D | SystemTest.java | 127 final AtomicBoolean done = new AtomicBoolean(); in testArrayCopyConcurrentModification() local 136 while (!done.get()) { in testArrayCopyConcurrentModification() 151 done.set(true); in testArrayCopyConcurrentModification()
|
/libcore/ojluni/src/main/java/sun/util/locale/ |
D | StringTokenIterator.java | 41 private boolean done; field in StringTokenIterator 71 return done; in isDone() 82 done = true; in next() 98 done = false; in setStart()
|
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
D | Striped64.java | 201 done: for (;;) { in longAccumulate() 214 break done; in longAccumulate() local 251 break done; in longAccumulate() local 260 break done; in longAccumulate() local 285 done: for (;;) { in doubleAccumulate() 298 break done; in doubleAccumulate() local 334 break done; in doubleAccumulate() local 342 break done; in doubleAccumulate() local
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
D | createElementNS06.java | 65 boolean done; in runTest()
|
D | createElementNS03.java | 72 boolean done; in runTest()
|
/libcore/luni/src/main/java/java/util/concurrent/ |
D | FutureTask.java | 190 protected void done() { } in done() method in FutureTask 354 done(); in finishCompletion()
|
D | ExecutorCompletionService.java | 94 protected void done() { completionQueue.add(task); } in done() method in ExecutorCompletionService.QueueingFuture
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | ThreadTest.java | 567 public volatile boolean done = false; in test_isInterrupted() field in ThreadTest.SpinThread 572 while (!done) in test_isInterrupted() 587 spin.done = true; in test_isInterrupted() 590 spin.done = true; in test_isInterrupted()
|
/libcore/luni/src/test/java/libcore/java/util/concurrent/ |
D | CopyOnWriteArrayListTest.java | 178 final CountDownLatch done = new CountDownLatch(1); in testAddAllIsAtomic() local 183 while (done.getCount() > 0) { in testAddAllIsAtomic() 199 done.countDown(); in testAddAllIsAtomic()
|