Searched defs:sleep (Results 26 - 31 of 31) sorted by relevance

12

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbedServerTester.java202 sleep(1000);
208 sleep(1000);
221 sleep(1000);
231 sleep(1000);
238 sleep(1000);
243 sleep(1000);
255 sleep(1000);
262 sleep(1000);
282 sleep(1000);
295 sleep(100
685 private void sleep(int amount) { method in class:XEmbedServerTester
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.cpp1221 int WatcherThread::sleep() const { function in class:WatcherThread
1225 // causing the WatcherThread to sleep until a task is
1281 // should be done, and sleep that amount of time.
1282 int time_waited = sleep();
1299 os::sleep(this, 2 * 60 * 1000, false);
1308 os::sleep(this, 5 * 1000, false);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp3595 // TODO-FIXME: reconcile Solaris' os::sleep with the bsd variation.
3601 int os::sleep(Thread* thread, jlong millis, bool interruptible) { function in class:os
3675 // %% make the sleep time an integer flag. for now use 1 millisec.
3676 return os::sleep(Thread::current(), 1, false);
3679 // Sleep forever; naked call to OS-specific sleep; use with CAUTION
3681 while (true) { // sleep forever ...
3682 ::sleep(100); // ... 100 seconds at a time
5053 while (::read(0, buf, sizeof(buf)) <= 0) { ::sleep(100); }
5529 // hang). The JVM is vulernable via sleep(), Object.wait(timo), LockSupport.parkNanos()
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp3516 // TODO-FIXME: reconcile Solaris' os::sleep with the linux variation.
3522 int os::sleep(Thread* thread, jlong millis, bool interruptible) { function in class:os
3596 // %% make the sleep time an integer flag. for now use 1 millisec.
3597 return os::sleep(Thread::current(), 1, false);
3600 // Sleep forever; naked call to OS-specific sleep; use with CAUTION
3602 while (true) { // sleep forever ...
3603 ::sleep(100); // ... 100 seconds at a time
4840 while (::read(0, buf, sizeof(buf)) <= 0) { ::sleep(100); }
5268 // hang). The JVM is vulernable via sleep(), Object.wait(timo), LockSupport.parkNanos()
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp3628 // sleep at least "millis" if not we'll sleep again.
3655 int os::sleep(Thread* thread, jlong millis, bool interruptible) { function in class:os
3692 // The original sleep() implementation did not create an
3719 // %% make the sleep time an integer flag. for now use 1 millisec.
3723 // Sleep forever; naked call to OS-specific sleep; use with CAUTION
3725 while (true) { // sleep forever ...
3726 ::sleep(100); // ... 100 seconds at a time
3753 os::sleep(Thread::current(), 0, false);
3769 // number of times yield_all is called in the one loop and increase the sleep
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp3318 // If someone wants to sleep for only a fraction of the default,
3348 int os::sleep(Thread* thread, jlong ms, bool interruptable) { function in class:os
3353 if ((res = sleep(thread, limit, interruptable)) != OS_TIMEOUT)
3395 // Sleep forever; naked call to OS-specific sleep; use with CAUTION
3397 while (true) { // sleep forever ...

Completed in 113 milliseconds

12