Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/lang/ref/
DFinalizeTest.java136 AtomicBoolean keepGoing = new AtomicBoolean(true); in testSystemRunFinalizationReturnsEvenIfQueueIsNonEmpty() local
137 createChainedFinalizer(count, keepGoing); in testSystemRunFinalizationReturnsEvenIfQueueIsNonEmpty()
139 keepGoing.set(false); in testSystemRunFinalizationReturnsEvenIfQueueIsNonEmpty()
143 public void createChainedFinalizer(final AtomicInteger counter, final AtomicBoolean keepGoing) { in createChainedFinalizer() argument
148 if (keepGoing.get()) { in createChainedFinalizer()
149 createChainedFinalizer(counter, keepGoing); // recursive! in createChainedFinalizer()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DConcurrentModificationExceptionTest.java31 boolean keepGoing = true; field in ConcurrentModificationExceptionTest.CollectionModifier
38 keepGoing = false; in stopNow()
43 while (keepGoing) { in run()