Searched refs:timeout (Results 251 - 271 of 271) sorted by relevance

<<11

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXToolkit.java133 * Return (potentially) platform specific display timeout for the
1844 * Executes mature timeout tasks registered with schedule().
2312 protected boolean syncNativeQueue(final long timeout) { argument
2363 awtLockWait(timeout);
2369 if ((System.currentTimeMillis() - start > timeout) && timeout >= 0) {
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinPool.java875 * of work). On timeout, if ctl has not changed, terminate the
1053 * complete or timeout
1989 * request, or the timeout occurs, or the current thread is
1992 * @param timeout the maximum time to wait
1993 * @param unit the time unit of the timeout argument
1995 * {@code false} if the timeout elapsed before termination
1998 public boolean awaitTermination(long timeout, TimeUnit unit) argument
2000 long nanos = unit.toNanos(timeout);
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c1950 uint32_t timeout = 1; local
1958 timeout = (timeout < AWT_SECONDARY_LOOP_TIMEOUT) ? (timeout << 1) : AWT_SECONDARY_LOOP_TIMEOUT;
1959 AWT_WAIT(timeout);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWToolkit.java983 public native boolean syncNativeQueue(final long timeout); argument
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_init.c1680 jthread thread, jobject object, jlong timeout)
1685 monitor_wait_event(env, thread, object, timeout);
1679 cbMonitorWait(jvmtiEnv *jvmti, JNIEnv* env, jthread thread, jobject object, jlong timeout) argument
/openjdk7/jdk/src/share/native/common/
H A Djni_util.c955 JNU_MonitorWait(JNIEnv *env, jobject object, jlong timeout) argument
971 (*env)->CallVoidMethod(env, object, Object_waitMID, timeout);
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp4389 // os::sleep() is implemented with either poll (NULL,0,timeout) or
4495 // timeout
6243 // millis is the relative timeout time
6244 // abstime will be the absolute timeout time
6442 * of "now + 100,000,000". This places a limit on the timeout of about 3.17
6739 // prepared to restart the system call after updating the timeout, unless
6740 // a poll() is done with timeout == -1, in which case we repeat with this
6743 int os::timeout(int fd, long timeout) { argument
6756 INTERRUPTIBLE_NORESTART(::poll(&pfd, 1, timeout), re
[all...]
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnector.java1332 long timeout)
1340 timeout);
1330 fetchNotifs(long clientSequenceNumber, int maxNotifications, long timeout) argument
/openjdk7/hotspot/src/share/vm/runtime/
H A DobjectMonitor.cpp1428 jlong timeout,
1431 event->set_timeout((TYPE_ULONG)timeout);
1489 // returns because of a timeout of interrupt. Contention is exceptionally rare
1525 // while (!timeout && !interrupted && _notified == 0) park()
1648 // no, it could be timeout or Thread.interrupt() or both
1649 // check for interrupt event, otherwise it is timeout
1656 // NOTE: Spurious wake up will be consider as timeout.
2329 // timeout or other spurious wake-up, dequeue the
1426 post_monitor_wait_event(EventJavaMonitorWait* event, jlong notifier_tid, jlong timeout, bool timedout) argument
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivation.java172 /** timeout on wait for child process to be created or destroyed */
178 /** timeout on wait for child process to be created */
1268 "timeout creating child process"));
2289 public void setSoTimeout(int timeout) argument
2292 serverSocket.setSoTimeout(timeout);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4710 // If we encounter a nearly simultanous timeout expiry and unpark()
5012 int os::timeout(int fd, long timeout) { argument
5016 t.tv_sec = timeout / 1000;
5017 t.tv_usec = (timeout % 1000) * 1000;
/openjdk7/jdk/src/share/back/
H A DeventHelper.c361 (void)outStream_writeLong(out, evinfo->u.monitor.timeout);
/openjdk7/jdk/src/share/javavm/export/
H A Djvm.h1224 JVM_Timeout(int fd, long timeout);
H A Djvmti.h858 jlong timeout);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiExport.cpp2034 jlong timeout) {
2059 jem.jni_object(), timeout);
2033 post_monitor_wait(JavaThread *thread, oop object, jlong timeout) argument
H A Djvm.h1369 JVM_Timeout(int fd, long timeout);
H A Djvm.cpp2913 THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "timeout value is negative");
3612 JVM_LEAF(jint, JVM_Timeout(int fd, long timeout))
3615 return os::timeout(fd, timeout);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Toolkit.cpp2636 Java_sun_awt_windows_WToolkit_syncNativeQueue(JNIEnv *env, jobject self, jlong timeout) argument
H A Dawt_Window.cpp2086 void AwtWindow::FlashWindowEx(HWND hWnd, UINT count, DWORD timeout, DWORD flags) { argument
2092 fi.dwTimeout = timeout;
/openjdk7/make/scripts/
H A Dwebrev.ksh3026 msg=`$WGET --timeout=10 --tries=1 -q $url -O - | grep '<title>' | sed 's/<title>\(.*\)<\/title>/\1/' | sed "$cleanup" | html_quote`
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec2770 (long timeout "Thread wait time in milliseconds")

Completed in 216 milliseconds

<<11