Searched defs:done (Results 1 - 25 of 172) sorted by relevance

1234567

/openjdk7/jdk/test/java/nio/channels/Selector/
H A DTemporarySelector.java38 static volatile boolean done = false; field in class:TemporarySelector
44 while (!done) {
83 done = true;
H A DHelperSlowToDie.java37 private static volatile boolean done; field in class:HelperSlowToDie
61 while (!done) ; // no nothing
79 done = true;
H A DRegAfterPreClose.java39 static volatile boolean done; field in class:RegAfterPreClose
52 while (!done) {
107 // loop accepting connections until done (or an IOException is thrown)
122 done = true;
/openjdk7/langtools/test/tools/javac/
H A DAnonInnerException_1.java36 boolean done = true; field in class:AnonInnerException_1
48 if (done)
50 if (done)
H A DAnonInnerException_2.java39 boolean done = true; field in class:AnonInnerException_2
47 if (done)
/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/test/javax/swing/JMenuItem/ShortcutNotDiplayed/
H A DShortcutNotDisplayedTest.java37 static volatile boolean done = false; field in class:ShortcutNotDisplayedTest
53 do { try { Thread.sleep(300); } catch (Exception e) {} } while (!done) ;
89 done = true;
/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/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/hotspot/test/compiler/7044738/
H A DTest7044738.java41 boolean done() { return (--iter > 0); } method in class:Test7044738
50 while (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/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/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/classes/java/rmi/server/
H A DRemoteCall.java131 void done() throws IOException; method in interface:RemoteCall
/openjdk7/jdk/test/java/nio/channels/AsynchronousChannelGroup/
H A DIdentity.java44 static final CountDownLatch done = new CountDownLatch(1); field in class:Identity
49 done.countDown();
141 done.countDown();
149 // wait until done
150 done.await();
/openjdk7/jdk/test/java/rmi/activation/Activatable/nestedActivate/
H A DNestedActivate.java47 private static boolean done = false; field in class:NestedActivate
150 done = true;
159 } else if (!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/jdk/test/java/rmi/activation/ActivationSystem/unregisterGroup/
H A DUnregisterGroup.java45 private static volatile boolean done = false; field in class:UnregisterGroup
136 done = true;
151 } else if (!done) {
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DPostRegisterDeadlockTest.java53 public void postRegister(Boolean done) { argument
H A DPostRegisterDeadlockTest2.java45 public void postRegister(Boolean done) { argument
H A DPreRegisterTest.java57 public void postRegister(Boolean done) {} argument
/openjdk7/jdk/test/javax/management/remote/mandatory/connection/
H A DDeadLockTest.java132 done = false;
142 done = true;
152 return done;
156 private boolean done = false; field in class:DeadLockTest.MyListener
/openjdk7/jdk/test/javax/management/standardmbean/
H A DDeadlockTest.java84 while(!wb.done || timeToWait > 0) {
91 if (!wb.done) {
156 System.out.println("WorkingBoy-run: All done!");
159 done = true;
170 public boolean done; field in class:DeadlockTest.WorkingBoy

Completed in 245 milliseconds

1234567