Searched defs:handshakeTimeout (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/com/sun/jdi/connect/spi/
H A DNullTransportService.java45 long handshakeTimeout) throws IOException {
66 long handshakeTimeout) throws IOException {
44 attach(String address, long attachTimeout, long handshakeTimeout) argument
65 accept(ListenKey key, long acceptTimeout, long handshakeTimeout) argument
/openjdk7/jdk/src/share/classes/com/sun/jdi/connect/spi/
H A DTransportService.java183 * @param handshakeTimeout
185 * and if <tt>handshakeTimeout</tt> is positive, then it
193 * use the handshakeTimeout as a timeout for the duration of the
196 * timeout, or if <tt>handshakeTimeout</tt> is specified
217 long handshakeTimeout) throws IOException;
334 * @param handshakeTimeout
336 * and if <tt>handshakeTimeout</tt> is positive, then it
347 * timeout, of if <tt>handshakeTimeout</tt> is specified
364 * handshakeTimeout is negative, or an invalid listen key
375 long handshakeTimeout) throw
216 attach(String address, long attachTimeout, long handshakeTimeout) argument
374 accept(ListenKey listenKey, long acceptTimeout, long handshakeTimeout) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DTCPChannel.java94 private static final int handshakeTimeout = // default 1 minute field in class:TCPChannel
96 new GetIntegerAction("sun.rmi.transport.tcp.handshakeTimeout",
239 sock.setSoTimeout(handshakeTimeout);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DSocketTransportService.java187 public Connection attach(String address, long attachTimeout, long handshakeTimeout) argument
193 if (attachTimeout < 0 || handshakeTimeout < 0) {
232 handshake(s, handshakeTimeout);
316 public Connection accept(ListenKey listener, long acceptTimeout, long handshakeTimeout) throws IOException { argument
317 if (acceptTimeout < 0 || handshakeTimeout < 0) {
354 handshake(s, handshakeTimeout);
/openjdk7/jdk/src/windows/classes/com/sun/tools/jdi/
H A DSharedMemoryTransportService.java104 public Connection attach(String address, long attachTimeout, long handshakeTimeout) throws IOException { argument
110 conn.handshake(handshakeTimeout);
145 public Connection accept(ListenKey listener, long acceptTimeout, long handshakeTimeout) throws IOException { argument
166 conn.handshake(handshakeTimeout);
185 void handshake(long handshakeTimeout) throws IOException { argument
/openjdk7/jdk/src/share/transport/shmem/
H A DshmemBack.c202 shmemAccept(jdwpTransportEnv* env, jlong acceptTimeout, jlong handshakeTimeout) argument
241 shmemAttach(jdwpTransportEnv* env, const char *address, jlong attachTimeout, jlong handshakeTimeout) argument
/openjdk7/jdk/src/share/transport/socket/
H A DsocketTransport.c325 socketTransport_accept(jdwpTransportEnv* env, jlong acceptTimeout, jlong handshakeTimeout) argument
335 if (handshakeTimeout == 0) {
336 handshakeTimeout = 2000;
390 err = handshake(socketFD, handshakeTimeout);
430 jlong handshakeTimeout)
480 err = handshake(socketFD, handshakeTimeout);
429 socketTransport_attach(jdwpTransportEnv* env, const char* addressString, jlong attachTimeout, jlong handshakeTimeout) argument

Completed in 38 milliseconds