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

1 2

  /external/python/cpython3/Lib/test/test_asyncio/
test_sslproto.py 33 def connection_made(self, ssl_proto, do_handshake=None):
37 if do_handshake:
38 sslpipe.do_handshake.side_effect = do_handshake
42 sslpipe.do_handshake.side_effect = mock_handshake
53 def do_handshake(callback): function in function:SslProtoHandshakeTests.test_cancel_handshake
60 self.connection_made(ssl_proto, do_handshake)
test_selector_events.py     [all...]
  /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()
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ssl.py 143 self.do_handshake()
301 def do_handshake(self): member in class:SSLSocket
305 self._sslobj.do_handshake()
323 self.do_handshake()
477 ssl_sock.do_handshake()
  /prebuilts/gdb/linux-x86/lib/python2.7/
ssl.py 143 self.do_handshake()
301 def do_handshake(self): member in class:SSLSocket
305 self._sslobj.do_handshake()
323 self.do_handshake()
477 ssl_sock.do_handshake()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ssl.py 143 self.do_handshake()
301 def do_handshake(self): member in class:SSLSocket
305 self._sslobj.do_handshake()
323 self.do_handshake()
477 ssl_sock.do_handshake()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ssl.py 143 self.do_handshake()
301 def do_handshake(self): member in class:SSLSocket
305 self._sslobj.do_handshake()
323 self.do_handshake()
477 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 279 IOResult FdForwardTransport::ReceiveFdsFromSocket(bool* do_handshake) {
316 *do_handshake = true;
318 *do_handshake = false;
362 bool do_handshake = false; local
364 if (ReceiveFdsFromSocket(&do_handshake) != IOResult::kOk) {
372 if (do_handshake) {
  /external/boringssl/src/ssl/
handoff.cc 169 if (ssl->do_handshake != nullptr ||
237 ssl->do_handshake = ssl_server_handshake;
ssl_lib.cc 796 ssl->do_handshake = ssl_client_handshake;
801 ssl->do_handshake = ssl_server_handshake;
855 if (ssl->do_handshake == NULL) {
884 if (ssl->do_handshake == NULL) {
893 if (ssl->do_handshake == NULL) {
968 if (ssl->do_handshake == NULL) {
    [all...]
handshake.cc 614 hs->wait = ssl->do_handshake(hs);
  /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 611 self.do_handshake()
833 def do_handshake(self, block=False): member in class:SSLSocket
840 self._sslobj.do_handshake()
867 self.do_handshake()
    [all...]
  /external/python/cpython3/Lib/asyncio/
sslproto.py 43 _DO_HANDSHAKE = "DO_HANDSHAKE"
63 do_handshake(). To shutdown SSL again, call unwrap().
118 def do_handshake(self, callback=None): member in class:_SSLPipe
200 # Call do_handshake() until it doesn't raise anymore.
201 self._sslobj.do_handshake()
583 # and checks the hostname in do_handshake()
635 ssldata = self._sslpipe.do_handshake(
  /external/python/cpython3/Lib/
ssl.py 681 def do_handshake(self): member in class:SSLObject
683 self._sslobj.do_handshake()
808 self.do_handshake()
1054 def do_handshake(self, block=False): member in class:SSLSocket
    [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...]
  /external/python/cpython2/Lib/test/
test_poplib.py 250 self.socket.do_handshake()
  /prebuilts/gdb/darwin-x86/lib/python2.7/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
268 s.do_handshake()
342 s.do_handshake()
353 sys.stdout.write("\nNeeded %d calls to do_handshake() to establish session.\n" % count)
620 self.socket.do_handshake()
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/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
268 s.do_handshake()
342 s.do_handshake()
353 sys.stdout.write("\nNeeded %d calls to do_handshake() to establish session.\n" % count)
620 self.socket.do_handshake()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_poplib.py 246 self.socket.do_handshake()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_poplib.py 246 self.socket.do_handshake()

Completed in 709 milliseconds

1 2