Home
last modified time | relevance | path

Searched refs:started (Results 1 – 4 of 4) sorted by relevance

/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
DHttpURLConnectionTest.java49 boolean started = false; field in HttpURLConnectionTest.MockServer
65 started = true; in run()
167 if (!httpServer.started) { in testGetOutputStream()
202 if (!server.started) bound.wait(5000); in testUsingProxy()
206 if (!proxy.started) bound.wait(5000); in testUsingProxy()
247 if (!server.started) bound.wait(5000); in testUsingProxySelector()
251 if (!proxy.started) bound.wait(5000); in testUsingProxySelector()
/libcore/luni/src/test/java/libcore/java/nio/channels/
DFileIOInterruptTest.java450 volatile boolean started; field in FileIOInterruptTest.StreamReader
462 started = true; in run()
472 for (int i = 0; i < 10 && !started; i++) { in waitForThreadToBlock()
475 assertTrue(started); in waitForThreadToBlock()
532 volatile boolean started; field in FileIOInterruptTest.ChannelReader
545 started = true; in run()
560 for (int i = 0; i < 10 && !started; i++) { in waitForThreadToBlock()
563 assertTrue(started); in waitForThreadToBlock()
/libcore/jsr166-tests/src/test/java/jsr166/
DLockSupportTest.java280 final CountDownLatch started = new CountDownLatch(1); in testGetBlocker() local
284 started.countDown(); in testGetBlocker()
294 await(started); in testGetBlocker()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DDatagramPacketTest.java31 volatile boolean started = false; field in DatagramPacketTest