Searched defs:acceptTimeout (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/test/com/sun/jdi/connect/spi/
H A DNullTransportService.java65 public Connection accept(ListenKey key, long acceptTimeout, argument
/openjdk7/jdk/src/share/classes/com/sun/jdi/connect/spi/
H A DTransportService.java325 * @param acceptTimeout
327 * if <tt>acceptTimeout</tt> is positive then block for up to
328 * <tt>acceptTimeout</tt> milliseconds, more or less, while waiting
331 * or if <tt>acceptTimeout</tt> is zero then block indefinitely
363 * If the value of the acceptTimeout argument, or
374 public abstract Connection accept(ListenKey listenKey, long acceptTimeout, argument
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DSocketTransportService.java316 public Connection accept(ListenKey listener, long acceptTimeout, long handshakeTimeout) throws IOException { argument
317 if (acceptTimeout < 0 || handshakeTimeout < 0) {
345 ss.setSoTimeout((int)acceptTimeout);
/openjdk7/jdk/src/windows/classes/com/sun/tools/jdi/
H A DSharedMemoryTransportService.java101 private native long accept0(long id, long acceptTimeout) throws IOException; argument
145 public Connection accept(ListenKey listener, long acceptTimeout, long handshakeTimeout) throws IOException { argument
164 long connectId = accept0(transportId, acceptTimeout);
/openjdk7/jdk/src/share/transport/shmem/
H A DshmemBack.c202 shmemAccept(jdwpTransportEnv* env, jlong acceptTimeout, jlong handshakeTimeout) argument
213 rc = shmemBase_accept(transport, (long)acceptTimeout, &connection);
/openjdk7/jdk/src/share/transport/socket/
H A DsocketTransport.c325 socketTransport_accept(jdwpTransportEnv* env, jlong acceptTimeout, jlong handshakeTimeout) argument
344 if (acceptTimeout > 0) {
348 rv = dbgsysPoll(serverSocketFD, JNI_TRUE, JNI_FALSE, (long)acceptTimeout);
382 if (acceptTimeout > 0) {
400 if (acceptTimeout > 0) {
402 acceptTimeout -= (endTime - startTime);
403 if (acceptTimeout <= 0) {

Completed in 87 milliseconds