HomeSort by relevance Sort by last modified time
    Searched defs:handshake (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/jetty/src/java/org/eclipse/jetty/websocket/
WebSocketServletConnection.java 27 void handshake(HttpServletRequest request, HttpServletResponse response, String subprotocol) throws IOException; method in interface:WebSocketServletConnection
WebSocketServletConnectionD06.java 39 public void handshake(HttpServletRequest request, HttpServletResponse response, String subprotocol) throws IOException method in class:WebSocketServletConnectionD06
WebSocketServletConnectionD08.java 40 public void handshake(HttpServletRequest request, HttpServletResponse response, String subprotocol) throws IOException method in class:WebSocketServletConnectionD08
WebSocketServletConnectionRFC6455.java 40 public void handshake(HttpServletRequest request, HttpServletResponse response, String subprotocol) throws IOException method in class:WebSocketServletConnectionRFC6455
WebSocketServletConnectionD00.java 40 public void handshake(HttpServletRequest request, HttpServletResponse response, String subprotocol) throws IOException method in class:WebSocketServletConnectionD00
79 response.sendError(101, "WebSocket Protocol Handshake");
91 response.sendError(101,"Web Socket Protocol Handshake");
WebSocketFactory.java 64 * <p>Checks the origin of an incoming WebSocket handshake request.</p>
322 // Let the connection finish processing the handshake
323 connection.handshake(request, response, protocol);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
RecordedResponse.java 89 Handshake handshake = response.handshake(); local
90 assertNotNull(handshake.cipherSuite());
91 assertNotNull(handshake.peerPrincipal());
92 assertEquals(1, handshake.peerCertificates().size());
93 assertNull(handshake.localPrincipal());
94 assertEquals(0, handshake.localCertificates().size());
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
HttpsURLConnectionImpl.java 19 import com.squareup.okhttp.Handshake;
42 @Override protected Handshake handshake() { method in class:HttpsURLConnectionImpl
47 // If there's a response, get the handshake from there so that caching
48 // works. Otherwise get the handshake from the connection because we might
51 ? delegate.httpEngine.getResponse().handshake()
52 : delegate.handshake;
  /libcore/support/src/test/java/libcore/tlswire/handshake/
CompressionMethod.java 17 package libcore.tlswire.handshake;
HandshakeMessage.java 17 package libcore.tlswire.handshake;
26 * Handshake Protocol message from TLS 1.2 RFC 5246.
35 * Parses the provided TLS record as a handshake message.
ServerNameHelloExtension.java 17 package libcore.tlswire.handshake;
CipherSuite.java 17 package libcore.tlswire.handshake;
HelloExtension.java 17 package libcore.tlswire.handshake;
ClientHello.java 17 package libcore.tlswire.handshake;
  /external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/
JavaApiConverterTest.java 18 import com.squareup.okhttp.Handshake;
131 assertNull(response.handshake());
212 Handshake handshake = response.handshake(); local
213 assertNotNull(handshake);
214 assertNotNullAndEquals("SuperSecure", handshake.cipherSuite());
215 assertEquals(localPrincipal, handshake.localPrincipal());
216 assertEquals(serverPrincipal, handshake.peerPrincipal());
217 assertEquals(serverCertificates, handshake.peerCertificates())
464 Handshake handshake = Handshake.get("SecureCipher", Arrays.<Certificate>asList(SERVER_CERT), local
554 Handshake handshake = Handshake.get("SecureCipher", Arrays.<Certificate>asList(SERVER_CERT), local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Response.java 41 private final Handshake handshake; field in class:Response
55 this.handshake = builder.handshake;
105 * Returns the TLS handshake of the connection that carried this response, or
108 public Handshake handshake() { method in class:Response
109 return handshake;
226 private Handshake handshake; field in class:Response.Builder
270 public Builder handshake(Handshake handshake) { method in class:Response.Builder
    [all...]
Cache.java 475 private final Handshake handshake; field in class:Entry
557 handshake = Handshake.get(cipherSuite, peerCertificates, localCertificates);
559 handshake = null;
574 this.handshake = response.handshake();
606 sink.writeUtf8(handshake.cipherSuite());
608 writeCertList(sink, handshake.peerCertificates());
609 writeCertList(sink, handshake.localCertificates())
    [all...]
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnService.java 152 handshake(tunnel);
256 private void handshake(DatagramChannel tunnel) throws Exception { method in class:ToyVpnService
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3debugeventlistener.h 100 ANTLR3_BOOLEAN (*handshake) (pANTLR3_DEBUG_EVENT_LISTENER delboy); member in struct:ANTLR3_DEBUG_EVENT_LISTENER_struct
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3debughandlers.c 55 static ANTLR3_BOOLEAN handshake (pANTLR3_DEBUG_EVENT_LISTENER delboy);
125 delboy->handshake = handshake;
194 handshake (pANTLR3_DEBUG_EVENT_LISTENER delboy) function
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
socket.rb 38 def handshake method in class:ANTLR3.Debug.EventSocketProxy
57 log!( "handshake failed due to an IOError:\n" )
280 handshake
290 def handshake method in class:ANTLR3.Debug.RemoteEventSocketListener
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
SocketTransportWrapper.java 46 public static final String HANDSHAKE_STRING = "JDWP-Handshake";
127 handshake(handshakeTimeout);
186 handshake(handshakeTimeout);
291 protected void handshake(long handshakeTimeout) throws IOException { method in class:SocketTransportWrapper
309 throw new IOException("Unexpected handshake response: " + response);
  /external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/internal/huc/
JavaApiConverter.java 18 import com.squareup.okhttp.Handshake;
114 // Handle SSL handshake information as needed.
127 Handshake handshake = Handshake.get( local
130 okResponseBuilder.handshake(handshake);
237 // Handle SSL handshake information as needed.
241 // Handshake doesn't support null lists.
252 Handshake handshake = Handshake.get local
293 final Handshake handshake = response.handshake(); local
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Connection.java 296 final ByteBuffer handshake = ByteBuffer.allocate(ProtocolConstants.QUERY_HEADER_SIZE); local
300 Socket.receive(sock, handshake.array(), 1);
301 final ByteOrder endian = (handshake.getChar() == 0) ? ByteOrder.LITTLE_ENDIAN :
303 handshake.order(endian);
305 // Right after that follows the handshake query header.
306 handshake.position(0);
307 Socket.receive(sock, handshake.array(), handshake.array().length);
310 final int signature = handshake.getInt();
313 final int remains = handshake.getInt() - ProtocolConstants.QUERY_HEADER_SIZE
    [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
OpenSSLSocketImplTest.java 213 Future<OpenSSLSocketImpl> clientFuture = handshake(listener, clientHooks);
214 Future<OpenSSLSocketImpl> serverFuture = handshake(listener, serverHooks);
220 Future<OpenSSLSocketImpl> handshake(final ServerSocket listener, final Hooks hooks) { method in class:OpenSSLSocketImplTest.TestConnection

Completed in 452 milliseconds

1 2 3