Searched refs:done (Results 1 - 25 of 339) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javac/
H A DAnonInnerException_2.java39 boolean done = true; field in class:AnonInnerException_2
47 if (done)
H A DAnonInnerException_1.java36 boolean done = true; field in class:AnonInnerException_1
48 if (done)
50 if (done)
/openjdk7/jdk/test/java/util/Timer/
H A DNameConstructors.java42 private static boolean done, passed; field in class:NameConstructors
45 done = passed = false;
50 done = true;
55 if (!(done && passed))
56 throw new RuntimeException(done + " : " + passed);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DWorkerThread.java31 private volatile boolean done = false; field in class:WorkerThread
51 done = true;
63 while (!done) {
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_png.c66 goto done;
71 goto done;
75 goto done;
106 goto done;
110 goto done;
114 goto done;
118 goto done;
132 goto done;
137 goto done;
144 goto done;
[all...]
/openjdk7/jdk/test/java/lang/ThreadGroup/
H A DNullThreadName.java42 static CountDownLatch done = new CountDownLatch(1); field in class:NullThreadName
57 done.await();
82 done.countDown();
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRegionSpanIterator.java44 // Are we done?
45 boolean done = false; field in class:RegionSpanIterator
104 done = lox >= hix || loy >= hiy;
114 if (done) {
120 // so that the caller will process the single span. We set done
124 done = true;
136 done = true;
150 done = true;
164 // If it's non- box, we're done
/openjdk7/hotspot/test/compiler/6863420/
H A DTest.java43 done = true;
49 static volatile boolean done = false; field in class:Test
58 for (int numThreads = 1; !done && numThreads <= 32; numThreads++) {
69 for (long l = 0; !done && l < 100000; l++) {
/openjdk7/jdk/test/sun/net/www/http/HttpClient/
H A DProxyTest.java50 private volatile boolean done = false; field in class:ProxyTest.HttpProxyServer
55 * That's where 99% of the protocol handling is done.
68 boolean done = false;
81 while (!done) {
88 done = true;
95 done = true;
146 done = true;
153 while (!done) {
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DHttpsProxyStackOverflow.java63 server.done();
83 private boolean done; field in class:HttpsProxyStackOverflow.BadAuthProxyServer
89 while (!done) {
101 // Ignore IOException when the main thread calls done
111 void done() { method in class:HttpsProxyStackOverflow.BadAuthProxyServer
113 done = true;
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Djhelper.d73 this->done = 0;
99 /!init_done && !this->done/
205 /!this->done &&
222 /!this->done && this->codecache && this->tag > 0/
230 /!this->done && this->codecache && this->tag > 0/
238 /!this->done && this->codecache && this->tag > 0/
246 /!this->done && this->codecache && this->tag > 0/
254 /!this->done && this->codecache && this->tag > 0/
262 /!this->done && this->codecache && this->tag > 0/
266 this->done
[all...]
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Djhelper.d73 this->done = 0;
99 /!init_done && !this->done/
205 /!this->done &&
222 /!this->done && this->codecache && this->tag > 0/
230 /!this->done && this->codecache && this->tag > 0/
238 /!this->done && this->codecache && this->tag > 0/
246 /!this->done && this->codecache && this->tag > 0/
254 /!this->done && this->codecache && this->tag > 0/
262 /!this->done && this->codecache && this->tag > 0/
266 this->done
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DExemptionMechanism.java64 private boolean done = false; field in class:ExemptionMechanism
260 if (done && (key != null)) {
316 done = false;
348 done = false;
380 done = false;
405 done = true;
438 done = true;
474 done = true;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/util/
H A DUri.java64 int done = 0;
66 int i = done;
69 if (done == 0)
79 if (i > done) {
80 buf.append(s.substring(done, i));
81 done = i;
87 String tem = s.substring(done, i);
107 done = i;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DUri.java54 int done = 0;
56 int i = done;
59 if (done == 0)
69 if (i > done) {
70 buf.append(s.substring(done, i));
71 done = i;
77 String tem = s.substring(done, i);
97 done = i;
/openjdk7/jdk/test/java/net/Socket/
H A DProxyCons.java54 synchronized void done () { method in class:ProxyCons.Server
69 s.done();
/openjdk7/jdk/test/java/net/URLConnection/
H A DTimeoutTest.java57 synchronized void done () { method in class:TimeoutTest.Server
78 s.done();
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DStringTokenIterator.java41 private boolean done; field in class:StringTokenIterator
71 return done;
82 done = true;
98 done = false;
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dicache_x86.cpp41 Label flush_line, done; local
44 __ jcc(Assembler::zero, done);
58 __ bind(done);
/openjdk7/jdk/test/java/lang/ClassLoader/deadlock/
H A DGetResource.java41 CyclicBarrier done = new CyclicBarrier(2); field in class:GetResource
53 done.await(); // keep holding the lock until t2 finishes
77 done.await();
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DHelperSlowToDie.java37 private static volatile boolean done; field in class:HelperSlowToDie
61 while (!done) ; // no nothing
79 done = true;
H A DOpRead.java58 boolean done = false;
60 while (!done) {
77 done = true;
H A DTemporarySelector.java38 static volatile boolean done = false; field in class:TemporarySelector
44 while (!done) {
83 done = true;
/openjdk7/jdk/test/sun/java2d/
H A DXRenderBlitsTest.java48 final CountDownLatch done = new CountDownLatch(1);
79 done.countDown();
88 done.await();
/openjdk7/jdk/test/sun/net/www/ftptest/
H A DFtpServer.java54 private boolean done = false; field in class:FtpServer
83 done = true;
128 while (!done) {

Completed in 171 milliseconds

1234567891011>>