Searched refs:wait (Results 26 - 50 of 295) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/awt/xembed/server/
H A DTestXEmbedServerJava.java64 lock.wait();
/openjdk7/jdk/test/java/lang/management/RuntimeMXBean/
H A DUpTime.java62 o.wait(DELAY * 1000);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DWorker.java46 jobs.wait();
/openjdk7/jdk/test/sun/awt/AppContext/8012933/
H A DTest8012933.java78 lock.wait();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/concurrent/
H A DCondVar.java219 * before or during the wait. However, if the thread is interrupted
220 * after the wait but during mutex re-acquisition, the interruption
237 wait();
269 * @param msecs The time to wait. A value less than or equal to zero
278 * before or during the wait.
298 wait(msecs);
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DMultiplexOutputStream.java129 lock.wait();
206 lock.wait();
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DconcurrentGCThread.cpp77 CGC_lock->wait(Mutex::_no_safepoint_check_flag, 200);
110 while (_async_stop) _m->wait(Mutex::_no_safepoint_check_flag);
139 while (_async_stop) _m->wait(Mutex::_no_safepoint_check_flag);
155 while (_async_stopped < _async) _m->wait(Mutex::_no_safepoint_check_flag);
232 _monitor.wait(Mutex::_no_safepoint_check_flag);
249 // wait for msg buffer to become non-empty
252 _monitor.wait();
/openjdk7/jdk/src/share/classes/sun/awt/
H A DAWTAutoShutdown.java74 * by calling lock.wait() to wait for the blocker to start.
111 * Once we detect that AWT is ready to shutdown we wait for a certain
287 mainLock.wait();
294 * In this case we have to wait once again.
297 * in an outer infinite wait at this point.
306 mainLock.wait(SAFETY_TIMEOUT);
337 mainLock.wait();
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1RefineThread.cpp116 _monitor->wait(Mutex::_no_safepoint_check_flag, G1ConcRefinementServiceIntervalMillis);
124 _monitor->wait(Mutex::_no_safepoint_check_flag);
252 Terminator_lock->wait();
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftJitterCorrector.java205 long wait = next - System.nanoTime();
206 if (wait > 0) {
208 Thread.sleep(wait / 1000000L);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsynchronizer.hpp71 static void wait (Handle obj, jlong millis, TRAPS);
76 // that needs to wait() on a java-level object but that can't risk
81 // wait on an internal lock, and reclaim original lock
157 void wait (TRAPS) { ObjectSynchronizer::wait (_obj, 0, CHECK); } // wait forever function in class:ObjectLocker
H A Dmutex.hpp182 // Defaults are to make safepoint checks, wait time is forever (i.e.,
183 // zero), and not a suspend-equivalent condition. Returns true if wait
185 bool wait(bool no_safepoint_check = !_no_safepoint_check_flag,
243 // logic for wait(), notify(), etc. Mutex extends monitor and restricts the
244 // visiblity of wait(), notify(), and notify_all().
247 // implement all the normal mutex and wait()-notify() logic in Mutex base class.
248 // The wait()-notify() facility would be exposed via special protected member functions
249 // (e.g., _Wait() and _Notify()) in Mutex. Monitor would extend Mutex and expose wait()
250 // as a call to _Wait(). That is, the public wait() would be a wrapper for the protected
269 bool wait (boo function in class:Mutex
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DCoroutineManager.java96 * <p>(Two possible approaches: wait-notify based and queue-based. Some
137 * wait-to-be-resumed), and the weight issue could be managed by
218 * run-up... eg, start the coroutine with a wait.
237 wait();
268 // We expect these values to be overwritten during the notify()/wait()
279 wait();
337 // We expect these values to be overwritten during the notify()/wait()
/openjdk7/jdk/src/share/classes/java/io/
H A DPipedReader.java186 wait(1000);
257 wait(1000);
308 /* possibly wait on the first character */
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DServerCommunicatorAdmin.java143 // wait until there is no more job
150 lock.wait();
168 lock.wait(remaining);
/openjdk7/jdk/test/java/io/Serializable/concurrentClassDescLookup/
H A DConcurrentClassDescLookup.java63 try { barrier.wait(); } catch (InterruptedException ex) {}
86 try { barrier.wait(); } catch (InterruptedException ex) {}
/openjdk7/jdk/test/java/util/concurrent/FutureTask/
H A DBlockingTaskExecutor.java87 * A helper class with a method to wait for a notification.
107 * @throws InterruptedException if the wait is interrupted
112 wait();
131 // wait indefinitely until task is interrupted
134 wait();
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotifReconnectDeadlockTest.java107 lock.wait(10);
164 lock.wait(listenerSleep);
/openjdk7/jdk/test/javax/management/standardmbean/
H A DDeadlockTest.java63 bb.wait(timeToWait);
85 wb.wait(timeToWait);
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLRenderQueue.java178 // wait for flush to complete
181 wait();
208 wait(100);
212 * - the wait() timed out
/openjdk7/jdk/src/solaris/demo/jni/Poller/
H A DLinkedQueue.java151 // try to extract. If fail, then enter wait-based retry loop
166 lastMonitor_.wait();
210 lastMonitor_.wait(waitTime);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DLayoutQueue.java96 wait();
/openjdk7/jdk/src/share/classes/java/lang/ref/
H A DReferenceQueue.java110 * timeout as if by invoking the {@link Object#wait(long)} method.
123 * If the timeout wait is interrupted
135 lock.wait(timeout);
148 * @throws InterruptedException If the wait is interrupted
/openjdk7/jdk/src/macosx/classes/com/apple/concurrent/
H A DLibDispatchSerialQueue.java94 lock.wait(timeout);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DPrintModel.m75 - (BOOL)runPrintLoopWithView:(NSView*)printerView waitUntilDone:(BOOL)wait withEnv:(JNIEnv *)env
85 if (wait) {

Completed in 87 milliseconds

1234567891011>>