Searched refs:handshake (Results 1 - 25 of 25) sorted by relevance

/openjdk7/jdk/test/sun/security/krb5/auto/
H A DIgnoreChannelBinding.java49 Context.handshake(c, s);
59 Context.handshake(c, s);
74 Context.handshake(c, s);
90 Context.handshake(c, s);
105 Context.handshake(c, s);
H A DAcceptorSubKey.java49 Context.handshake(c, s);
H A DNonMutualSpnego.java51 Context.handshake(c, s);
H A DSPNEGO.java48 Context.handshake(c, s);
H A DKeyTabCompat.java63 Context.handshake(c, s);
82 Context.handshake(c, s);
H A DTwoPrinces.java91 Context.handshake(c1, s);
100 Context.handshake(c2, s);
H A DDupEtypes.java55 Context.handshake(c, s);
H A DNewSalt.java62 Context.handshake(c1, c2);
H A DNoInitNoKeytab.java58 Context.handshake(c, s);
H A DPrincipalNameEquals.java50 Context.handshake(c, s);
H A DBasicKrb5Test.java112 Context.handshake(c, s);
132 Context.handshake(s2, b);
H A DMoreKvno.java90 Context.handshake(c, s);
102 Context.handshake(c, s);
H A DNoAddresses.java79 Context.handshake(c, s);
H A DRRC.java49 Context.handshake(c, s);
H A DOkAsDelegate.java81 Context.handshake(c, s);
H A DDynamicKeytab.java141 Context.handshake(c, s);
H A DOkAsDelegateXRealm.java130 Context.handshake(c, s);
H A DContext.java234 * 1. calling requestXXX() before handshake
531 static public void handshake(final Context c, final Context s) throws Exception { method in class:Context
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DThreadStackTrace.java148 private Semaphore handshake = new Semaphore(); field in class:ThreadStackTrace.BlockedThread
154 return (handshake.getWaiterCount() > 0);
158 handshake.semaP();
165 handshake.semaP();
173 while (handshake.getWaiterCount() == 0) {
176 handshake.semaV();
226 private Semaphore handshake = new Semaphore(); field in class:ThreadStackTrace.Examiner
238 handshake.semaP();
275 while (handshake.getWaiterCount() == 0) {
279 handshake
[all...]
H A DSynchronizationStatistics.java193 private Semaphore handshake = new Semaphore(); field in class:SynchronizationStatistics.BlockedThread
198 handshake.semaP();
209 return (handshake.getWaiterCount() > 0);
214 while (handshake.getWaiterCount() == 0) {
217 handshake.semaV();
/openjdk7/jdk/test/com/sun/security/sasl/ntlm/
H A DNTLMTest.java155 handshake(clnt, srv);
198 handshake(clnt, srv);
249 handshake(clnt, srv);
294 handshake(clnt, srv);
341 handshake(clnt, srv);
356 private static void handshake(SaslClient clnt, SaslServer srv) method in class:NTLMTest
/openjdk7/jdk/src/windows/classes/com/sun/tools/jdi/
H A DSharedMemoryTransportService.java110 conn.handshake(handshakeTimeout);
166 conn.handshake(handshakeTimeout);
184 // handshake with the target VM
185 void handshake(long handshakeTimeout) throws IOException { method in class:SharedMemoryConnection
194 throw new IOException("handshake failed - unrecognized message from target VM");
/openjdk7/jdk/src/share/transport/shmem/
H A DshmemBack.c119 handshake() function
128 RETURN_IO_ERROR("receive failed during handshake");
131 RETURN_IO_ERROR("handshake failed - debugger sent unexpected message");
138 RETURN_IO_ERROR("write failed during handshake");
149 * doesn't support a handshake timeout.
222 rc = handshake();
259 rc = handshake();
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DSocketTransportService.java119 void handshake(Socket s, long timeout) throws IOException { method in class:SocketTransportService
132 throw new IOException("handshake timeout");
136 throw new IOException("handshake failed - connection prematurally closed");
142 throw new IOException("handshake failed - unrecognized message from target VM");
184 * Attach to the specified address with optional attach and handshake
230 // handshake with the target VM
232 handshake(s, handshakeTimeout);
314 * Accept a connection from a debuggee and handshake with it.
353 // handshake here
354 handshake(
[all...]
/openjdk7/jdk/src/share/transport/socket/
H A DsocketTransport.c139 handshake(int fd, jlong timeout) { function
155 setLastError(0, "timeout during handshake");
163 setLastError(0, "handshake failed - connection prematurally closed");
167 RETURN_IO_ERROR("recv failed during handshake");
181 sprintf(msg, "handshake failed - received >%s< - expected >%s<", b, hello);
187 RETURN_IO_ERROR("send failed during handshake");
332 * Use a default handshake timeout if not specified - this avoids an indefinite
379 * is a handshake timeout set then it will go into non-blocking mode
380 * anyway for the handshake.
389 /* handshake wit
[all...]

Completed in 88 milliseconds