HomeSort by relevance Sort by last modified time
    Searched refs:do_handshake (Results 1 - 25 of 27) sorted by null

1 2

  /external/grpc-grpc/src/core/lib/channel/
handshaker.h 83 void (*do_handshake)(grpc_handshaker* handshaker, member in struct:__anon23072
handshaker.cc 56 handshaker->vtable->do_handshake(handshaker, acceptor, on_handshake_done,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ssl.py 134 self.do_handshake()
292 def do_handshake(self): member in class:SSLSocket
296 self._sslobj.do_handshake()
309 self.do_handshake()
462 ssl_sock.do_handshake()
  /art/dt_fd_forward/
dt_fd_forward.h 108 // Gets the fds from the server side. do_handshake returns whether the transport can skip the
110 IOResult ReceiveFdsFromSocket(/*out*/bool* do_handshake);
dt_fd_forward.cc 290 IOResult FdForwardTransport::ReceiveFdsFromSocket(bool* do_handshake) {
327 *do_handshake = true;
329 *do_handshake = false;
373 bool do_handshake = false; local
375 if (ReceiveFdsFromSocket(&do_handshake) != IOResult::kOk) {
383 if (do_handshake) {
  /external/grpc-grpc/test/core/tsi/
ssl_transport_security_test.cc 635 auto do_handshake = [&session_ticket_key, local
651 do_handshake(false);
652 do_handshake(true);
653 do_handshake(true);
656 do_handshake(false);
657 do_handshake(true);
659 do_handshake(false);
660 do_handshake(true);
    [all...]
  /external/libevent/
bufferevent_openssl.c 1015 do_handshake(struct bufferevent_openssl *bev_ssl) function
1063 do_handshake(bev_ssl);/* XXX handle failure */
1075 do_handshake(bev_ssl);/* XXX handle failure */
1094 return do_handshake(bev_ssl);
1127 return do_handshake(bev_ssl);
    [all...]
  /external/python/cpython2/Lib/
ssl.py 617 self.do_handshake()
839 def do_handshake(self, block=False): member in class:SSLSocket
846 self._sslobj.do_handshake()
873 self.do_handshake()
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_sslproto.py 40 def connection_made(self, ssl_proto, *, do_handshake=None):
44 if do_handshake:
45 sslpipe.do_handshake.side_effect = do_handshake
49 sslpipe.do_handshake.side_effect = mock_handshake
functional.py 154 ssl_sock.do_handshake()
  /external/python/cpython3/Lib/asyncio/
sslproto.py 31 _DO_HANDSHAKE = "DO_HANDSHAKE"
51 do_handshake(). To shutdown SSL again, call unwrap().
106 def do_handshake(self, callback=None): member in class:_SSLPipe
188 # Call do_handshake() until it doesn't raise anymore.
189 self._sslobj.do_handshake()
668 ssldata = self._sslpipe.do_handshake(
  /external/python/cpython3/Lib/
ssl.py 761 def do_handshake(self): member in class:SSLObject
763 self._sslobj.do_handshake()
853 self.do_handshake()
1110 def do_handshake(self, block=False): member in class:SSLSocket
    [all...]
  /external/boringssl/src/ssl/
ssl_lib.cc 753 ssl->do_handshake = ssl_client_handshake;
758 ssl->do_handshake = ssl_server_handshake;
878 if (ssl->do_handshake == NULL) {
908 if (ssl->do_handshake == NULL) {
917 if (ssl->do_handshake == NULL) {
1004 if (ssl->do_handshake == NULL) {
    [all...]
handoff.cc 317 if (ssl->do_handshake != nullptr ||
402 ssl->do_handshake = ssl_server_handshake;
handshake.cc 666 hs->wait = ssl->do_handshake(hs);
ssl_x509.cc     [all...]
internal.h 3208 bssl::ssl_hs_wait_t (*do_handshake)(bssl::SSL_HANDSHAKE *hs) = nullptr; member in class:ssl_st::bssl
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_poplib.py 246 self.socket.do_handshake()
test_ssl.py 42 if e.errno == 32: # broken pipe when ssl_sock.do_handshake(), this test doesn't care about that
49 if e.errno == 32: # broken pipe when ssl_sock.do_handshake(), this test doesn't care about that
256 s.do_handshake()
302 s.do_handshake()
313 sys.stdout.write("\nNeeded %d calls to do_handshake() to establish session.\n" % count)
567 self.socket.do_handshake()
    [all...]
test_ftplib.py 276 self.socket.do_handshake()
  /external/python/cpython2/Lib/test/
test_poplib.py 260 self.socket.do_handshake()
test_ssl.py 93 if e.errno == 32: # broken pipe when ssl_sock.do_handshake(), this test doesn't care about that
100 if e.errno == 32: # broken pipe when ssl_sock.do_handshake(), this test doesn't care about that
    [all...]
test_ftplib.py 291 self.socket.do_handshake()
  /external/python/cpython3/Lib/test/
test_ssl.py     [all...]
test_poplib.py 172 self.socket.do_handshake()

Completed in 1409 milliseconds

1 2