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

12

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DHandshake.java35 public final class Handshake { class
40 private Handshake( method in class: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;
H A DResponse.java49 private final Handshake handshake;
106 public Handshake handshake() {
384 private Handshake handshake;
425 public Builder handshake(Handshake handshake) {
H A DConnection.java76 private Handshake handshake;
208 handshake = Handshake.get(sslSocket.getSession());
289 public Handshake getHandshake() {
/external/chromium_org/net/socket/
H A Dssl_server_socket.h32 virtual int Handshake(const CompletionCallback& callback) = 0;
54 // The caller starts the SSL server handshake by calling Handshake on the
H A Dssl_server_socket_nss.h34 virtual int Handshake(const CompletionCallback& callback) OVERRIDE;
H A Dssl_server_socket_openssl.h36 virtual int Handshake(const CompletionCallback& callback) OVERRIDE;
H A Dssl_server_socket_unittest.cc377 // This test executes Connect() on SSLClientSocket and Handshake() on
380 TEST_F(SSLServerSocketTest, Handshake) {
386 int server_ret = server_socket_->Handshake(handshake_callback.callback());
415 int server_ret = server_socket_->Handshake(handshake_callback.callback());
499 int server_ret = server_socket_->Handshake(handshake_callback.callback());
550 int server_ret = server_socket_->Handshake(handshake_callback.callback());
/external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/
H A DFinishedTest.java24 import org.apache.harmony.xnet.provider.jsse.Handshake;
37 assertEquals("incorrect type", Handshake.FINISHED, message.getType());
H A DHelloRequestTest.java21 import org.apache.harmony.xnet.provider.jsse.Handshake;
34 assertEquals("incorrect type", Handshake.HELLO_REQUEST, message
H A DServerHelloDoneTest.java23 import org.apache.harmony.xnet.provider.jsse.Handshake;
40 assertEquals("incorrect type", Handshake.SERVER_HELLO_DONE, message
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Dserialcli.py116 self._port_handle.Handshake = System.IO.Ports.Handshake.RequestToSendXOnXOff
118 self._port_handle.Handshake = System.IO.Ports.Handshake.RequestToSend
120 self._port_handle.Handshake = System.IO.Ports.Handshake.XOnXOff
122 self._port_handle.Handshake = getattr(System.IO.Ports.Handshake, 'None') # reserved keyword in Py3k
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpsURLConnectionImpl.java19 import com.squareup.okhttp.Handshake;
37 @Override protected Handshake handshake() {
H A DDelegatingHttpsURLConnection.java19 import com.squareup.okhttp.Handshake;
48 protected abstract Handshake handshake();
59 Handshake handshake = handshake();
64 Handshake handshake = handshake();
71 Handshake handshake = handshake();
78 Handshake handshake = handshake();
83 Handshake handshake = handshake();
H A DJavaApiConverter.java18 import com.squareup.okhttp.Handshake;
95 Handshake handshake = Handshake.get(
133 // Handshake doesn't support null lists.
144 Handshake handshake = Handshake.get(
181 final Handshake handshake = response.handshake();
638 @Override protected Handshake handshake() {
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DASTDbg.stg66 proxy.Handshake();
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DASTDbg.stg70 proxy.Handshake();
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DClientKeyExchangeTest.java43 assertEquals("incorrect type", Handshake.CLIENT_KEY_EXCHANGE,
103 assertEquals("incorrect type", Handshake.CLIENT_KEY_EXCHANGE,
149 assertEquals("incorrect type", Handshake.CLIENT_KEY_EXCHANGE, message
H A DCertificateMessageTest.java61 assertEquals("incorrect type", Handshake.CERTIFICATE, message.getType());
90 assertEquals("incorrect type", Handshake.CERTIFICATE, message.getType());
H A DCertificateVerifyTest.java53 assertEquals("incorrect type", Handshake.CERTIFICATE_VERIFY,
H A DClientHelloTest.java44 assertEquals("incorrect type", Handshake.CLIENT_HELLO, message.getType());
H A DCertificateRequestTest.java68 assertEquals("incorrect type", Handshake.CERTIFICATE_REQUEST, message
H A DServerHelloTest.java37 assertEquals("incorrect type", Handshake.SERVER_HELLO, message
H A DServerKeyExchangeTest.java40 assertEquals("incorrect type", Handshake.SERVER_KEY_EXCHANGE, message
94 assertEquals("incorrect type", Handshake.SERVER_KEY_EXCHANGE, message
144 assertEquals("incorrect type", Handshake.SERVER_KEY_EXCHANGE, message
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DRecordedResponse.java66 Handshake handshake = response.handshake();
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DJavaApiConverterTest.java19 import com.squareup.okhttp.Handshake;
191 Handshake handshake = response.handshake();
291 Handshake handshake = response.handshake();
540 Handshake handshake = Handshake.get("SecureCipher", Arrays.<Certificate>asList(SERVER_CERT),
631 Handshake handshake = Handshake.get("SecureCipher", Arrays.<Certificate>asList(SERVER_CERT),

Completed in 511 milliseconds

12