HomeSort by relevance Sort by last modified time
    Searched refs:handshake (Results 26 - 50 of 100) sorted by null

12 3 4

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
ASTDbg.stg 56 proxy.handshake()
  /external/qemu/android/protocol/
core-commands-proxy.c 316 char* handshake = NULL; local
321 &handshake);
346 if (handshake != NULL) {
347 if (handshake[0] != '\0') {
348 fprintf(stdout, " Handshake: %s", handshake);
350 free(handshake);
  /external/chromium/net/socket/
socks5_client_socket.cc 155 // if the SOCKS handshake is complete.
166 // SOCKS handshake is complete.
343 int SOCKS5ClientSocket::BuildHandshakeWriteBuffer(std::string* handshake)
345 DCHECK(handshake->empty());
347 handshake->push_back(kSOCKS5Version);
348 handshake->push_back(kTunnelCommand); // Connect command
349 handshake->push_back(kNullByte); // Reserved null
351 handshake->push_back(kEndPointDomain); // The type of the address.
356 handshake->push_back(static_cast<unsigned char>(
358 handshake->append(host_request_info_.hostname())
    [all...]
socks5_client_socket.h 28 // This ClientSocket is used to setup a SOCKSv5 handshake with a socks proxy.
53 // Does the SOCKS handshake and completes the protocol.
120 // Writes the SOCKS handshake buffer into |handshake|
122 int BuildHandshakeWriteBuffer(std::string* handshake) const;
135 // SOCKS handshake data. The length contains the expected size to
139 // While writing, this buffer stores the complete write handshake data.
140 // While reading, it stores the handshake information received so far.
143 // This becomes true when the SOCKS handshake has completed and the
147 // These contain the bytes sent / received by the SOCKS handshake
    [all...]
  /external/chromium_org/net/socket/
socks5_client_socket.cc 153 // if the SOCKS handshake is complete.
164 // SOCKS handshake is complete.
337 int SOCKS5ClientSocket::BuildHandshakeWriteBuffer(std::string* handshake)
339 DCHECK(handshake->empty());
341 handshake->push_back(kSOCKS5Version);
342 handshake->push_back(kTunnelCommand); // Connect command
343 handshake->push_back(kNullByte); // Reserved null
345 handshake->push_back(kEndPointDomain); // The type of the address.
350 handshake->push_back(static_cast<unsigned char>(
352 handshake->append(host_request_info_.hostname())
    [all...]
socks5_client_socket.h 27 // This StreamSocket is used to setup a SOCKSv5 handshake with a socks proxy.
45 // Does the SOCKS handshake and completes the protocol.
113 // Writes the SOCKS handshake buffer into |handshake|
115 int BuildHandshakeWriteBuffer(std::string* handshake) const;
128 // SOCKS handshake data. The length contains the expected size to
132 // While writing, this buffer stores the complete write handshake data.
133 // While reading, it stores the handshake information received so far.
136 // This becomes true when the SOCKS handshake has completed and the
140 // These contain the bytes sent / received by the SOCKS handshake
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/handshake/
draft75.py 46 from mod_pywebsocket.handshake._base import HandshakeException
47 from mod_pywebsocket.handshake._base import build_location
48 from mod_pywebsocket.handshake._base import validate_subprotocol
77 """This class performs WebSocket handshake."""
85 strict: Strictly check handshake request. Default: False.
90 handshake.
100 """Perform WebSocket Handshake.
104 ws_challenge_md5: WebSocket handshake information.
120 self._logger.debug('Sent opening handshake response')
146 self._sendall('HTTP/1.1 101 Web Socket Protocol Handshake\r\n'
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ASTDbg.stg 63 [proxy handshake];
  /external/chromium_org/net/quic/congestion_control/
pacing_sender.cc 83 IsHandshake handshake) {
86 has_retransmittable_data, handshake);
fix_rate_sender.h 51 IsHandshake handshake) OVERRIDE;
pacing_sender.h 57 IsHandshake handshake) OVERRIDE;
send_algorithm_interface.h 104 IsHandshake handshake) = 0;
inter_arrival_sender.h 59 IsHandshake handshake) OVERRIDE;
tcp_cubic_sender.h 62 IsHandshake handshake) OVERRIDE;
  /external/chromium_org/net/quic/
quic_packet_generator.h 69 IsHandshake handshake) = 0;
quic_connection.h 95 // Called to ask if any handshake messages are pending in this visitor.
298 IsHandshake handshake) OVERRIDE;
352 // handshake finishes.
409 IsHandshake handshake);
438 IsHandshake handshake,
485 IsHandshake handshake,
492 handshake(handshake),
501 IsHandshake handshake; member in struct:net::QuicConnection::QueuedPacket
quic_packet_generator.cc 75 IsHandshake handshake = id == kCryptoStreamId ? IS_HANDSHAKE : NOT_HANDSHAKE; local
76 // The caller should have flushed pending frames before sending handshake
78 DCHECK(handshake == NOT_HANDSHAKE || !HasPendingFrames());
91 HAS_RETRANSMITTABLE_DATA, handshake)) {
  /libcore/crypto/src/test/java/org/conscrypt/
NativeCryptoTest.java 760 public static Future<TestSSLHandshakeCallbacks> handshake(final ServerSocket listener, method in class:NativeCryptoTest
781 + " handshake"
794 + " handshake"
841 Future<TestSSLHandshakeCallbacks> client = handshake(listener, 0, true, cHooks, null, null);
842 Future<TestSSLHandshakeCallbacks> server = handshake(listener, 0, false, sHooks, null, null);
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_handshake.py 33 """Tests for handshake module."""
44 from mod_pywebsocket.handshake._base import HandshakeException
45 from mod_pywebsocket.handshake._base import validate_subprotocol
49 """A unittest for handshake module."""
test_dispatch.py 42 from mod_pywebsocket import handshake namespace
158 except handshake.HandshakeException, e:
167 self.assertRaises(handshake.AbortedByUserException,
236 self.assertRaises(handshake.AbortedByUserException,
test_handshake_hybi08.py 33 """Tests for handshake module."""
40 from mod_pywebsocket.handshake._base import AbortedByUserException
41 from mod_pywebsocket.handshake._base import HandshakeException
42 from mod_pywebsocket.handshake._base import VersionException
43 from mod_pywebsocket.handshake.hybi import Handshaker
49 """A class for holding data for constructing opening handshake strings for
50 testing the opening handshake processor.
143 handshake processor.
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
dispatch.py 40 from mod_pywebsocket import handshake namespace
237 """Do extra checking in WebSocket handshake.
248 HandshakeException: when opening handshake failed
257 except handshake.AbortedByUserException, e:
265 raise handshake.HandshakeException(e, common.HTTP_STATUS_FORBIDDEN)
296 except handshake.AbortedByUserException, e:
325 handshake.
334 """Retrieves two handlers (one for extra handshake processing, and one
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
dispatch.py 40 from mod_pywebsocket import handshake namespace
237 """Do extra checking in WebSocket handshake.
248 HandshakeException: when opening handshake failed
257 except handshake.AbortedByUserException, e:
268 raise handshake.HandshakeException(e, common.HTTP_STATUS_FORBIDDEN)
299 except handshake.AbortedByUserException, e:
331 handshake.
340 """Retrieves two handlers (one for extra handshake processing, and one
  /external/chromium_org/third_party/tlslite/tlslite/
TLSConnection.py 24 socket into the constructor. Then call some handshake function.
25 If the handshake completes without raising an exception, then a TLS
57 """Perform an SRP handshake in the role of client.
59 This function performs a TLS/SRP handshake. SRP mutually
62 combined SRP and server-certificate handshake, if the server
72 Like any handshake function, this can be called on a closed
74 If called on an open connection it performs a re-handshake.
92 succeed, a full SRP handshake will be performed.
102 credentials, if the handshake completes succesfully.
106 handshake is completed. If True, this function will return
    [all...]
messages.py 61 self.type = ContentType.handshake
124 self.contentType = ContentType.handshake
238 self.contentType = ContentType.handshake
329 self.contentType = ContentType.handshake
394 self.contentType = ContentType.handshake
425 self.contentType = ContentType.handshake
466 self.contentType = ContentType.handshake
514 self.contentType = ContentType.handshake
532 self.contentType = ContentType.handshake
581 self.contentType = ContentType.handshake
    [all...]

Completed in 1056 milliseconds

12 3 4