HomeSort by relevance Sort by last modified time
    Searched defs:Handshake (Results 1 - 7 of 7) sorted by null

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Handshake.java 29 * A record of a TLS handshake. For HTTPS clients, the client is <i>local</i>
32 * <p>This value object describes a completed handshake. Use {@link
35 public final class Handshake {
40 private Handshake(
47 public static Handshake get(SSLSession session) {
66 return new Handshake(cipherSuite, peerCertificatesList, localCertificatesList);
69 public static Handshake get(
72 return new Handshake(cipherSuite, Util.immutableList(peerCertificates),
106 if (!(other instanceof Handshake)) return false;
107 Handshake that = (Handshake) other
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventSocketProxy.cs 94 public virtual void Handshake() {
RemoteDebugEventSocketListener.cs 252 Handshake();
319 protected virtual void Handshake() {
327 listener.Commence(); // inform listener after handshake
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventSocketProxy.cs 99 public virtual void Handshake()
RemoteDebugEventSocketListener.cs 308 Handshake();
399 protected virtual void Handshake()
408 listener.Commence(); // inform listener after handshake
  /external/chromium_org/net/socket/
ssl_server_socket_nss.cc 123 int SSLServerSocketNSS::Handshake(const CompletionCallback& callback) {
384 // Doing this will force PR_Accept perform handshake as server.
498 // In handshake phase.
520 // In handshake phase.
773 LOG(ERROR) << "handshake failed; NSS error code " << prerr
808 // This is called only in full handshake mode.
810 // in full handshake mode or in resumption handshake mode.
821 // NSS calls this when handshake is completed.
822 // After the SSL handshake is finished we need to verify the certificate
    [all...]
ssl_server_socket_openssl.cc 75 int SSLServerSocketOpenSSL::Handshake(const CompletionCallback& callback) {
86 // Set SSL to server mode. Handshake happens in the loop below.
251 // In handshake phase.
273 // In handshake phase.
569 LOG(ERROR) << "handshake failed; returned " << rv

Completed in 187 milliseconds