/third_party/python/Lib/test/test_asyncio/ |
H A D | test_protocols.py | 18 self.assertIsNone(p.connection_made(f)) 27 self.assertIsNone(p.connection_made(f)) 38 self.assertIsNone(p.connection_made(f)) 49 self.assertIsNone(dp.connection_made(f)) 58 self.assertIsNone(sp.connection_made(f))
|
H A D | test_sslproto.py | 44 def connection_made(self, ssl_proto, *, do_handshake=None): member in SslProtoHandshakeTests 52 ssl_proto.connection_made(transport) 74 self.connection_made( 102 self.connection_made( 115 transport = self.connection_made( 130 self.connection_made(ssl_proto) 145 self.connection_made(ssl_proto) 155 self.connection_made(ssl_proto) 250 def connection_made(proto, tr): member in BaseStartTLS.test_start_tls_client_reg_proto_1.ClientProto 252 # Ensure connection_made get 313 def connection_made(proto, tr): global() member in BaseStartTLS.test_create_connection_memory_leak.ClientProto 384 def connection_made(self, tr): global() member in BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoFirst 401 def connection_made(self, tr): global() member in BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoSecond 471 def connection_made(proto, tr): global() member in BaseStartTLS.test_start_tls_slow_client_cancel.ClientProto 534 def connection_made(self, tr): global() member in BaseStartTLS.test_start_tls_server_1.ServerProto [all...] |
H A D | test_ssl.py | 44 def connection_made(self, transport): member in MyBaseProto 502 # connection_made() is called first 518 def connection_made(self, transport): member in TestSSL.test_ssl_handshake_connection_lost.ClientProto 545 "calling connection_made()") 547 self.fail("unexpected call to connection_made()") 705 def connection_made(proto, tr): member in TestSSL.test_start_tls_client_reg_proto_1.ClientProto 707 # Ensure connection_made gets called only once. 764 def connection_made(proto, tr): member in TestSSL.test_create_connection_memory_leak.ClientProto 768 # Ensure connection_made gets called only once. 835 def connection_made(sel member in TestSSL.test_start_tls_client_buf_proto_1.ClientProtoFirst 855 def connection_made(self, tr): global() member in TestSSL.test_start_tls_client_buf_proto_1.ClientProtoSecond 925 def connection_made(proto, tr): global() member in TestSSL.test_start_tls_slow_client_cancel.ClientProto 985 def connection_made(self, tr): global() member in TestSSL.test_start_tls_server_1.ServerProto 1071 def connection_made(self, transport): global() member in TestSSL.test_create_server_ssl_over_ssl.ServerProtocol 1549 def connection_made(self, transport): global() member in TestSSL.test_shutdown_timeout_handler_not_set.Protocol [all...] |
H A D | test_events.py | 95 def connection_made(self, transport): member in MyBaseProto 118 def connection_made(self, transport): member in MyProto 119 super().connection_made(transport) 136 def connection_made(self, transport): member in MyDatagramProto 169 def connection_made(self, transport): member in MyReadPipeProto 204 def connection_made(self, transport): member in MyWritePipeProto 233 def connection_made(self, transport): member in MySubprocessProtocol 1176 def connection_made(self, transport): member in EventLoopTestsMixin.test_create_server_sock.TestMyProto 1177 super().connection_made(transport) 1215 def connection_made(sel member in EventLoopTestsMixin.test_create_server_dual_stack.TestMyProto [all...] |
H A D | test_sendfile.py | 44 def connection_made(self, transport): member in MySendfileProto 79 def connection_made(self, transport): member in MyProto 191 # connection_made callback
|
H A D | test_windows_events.py | 29 def connection_made(self, trans): member in UpperProto
|
H A D | test_proactor_events.py | 56 self.protocol.connection_made(tr) 449 self.protocol.connection_made.side_effect = lambda _: tr.pause_reading() 973 def connection_made(self, transport): member in ProactorEventLoopUnixSockSendfileTests.MyProto 1031 # connection_made callback
|
H A D | test_selector_events.py | 505 self.protocol.connection_made.assert_called_with(tr) 539 self.protocol.connection_made.side_effect = lambda _: tr.pause_reading() 917 self.protocol.connection_made.assert_called_with(tr)
|
/third_party/nghttp2/src/ |
H A D | shrpx_live_check.h | 83 int connection_made();
|
H A D | shrpx_live_check.cc | 367 if (connection_made() != 0) { in connected() 432 if (connection_made() != 0) { in tls_handshake() 750 int LiveCheck::connection_made() { in connection_made() function in shrpx::LiveCheck
|
H A D | shrpx_http2_session.h | 129 int connection_made();
|
H A D | nghttp.h | 240 int connection_made();
|
H A D | HttpServer.h | 169 int connection_made();
|
H A D | h2load.h | 449 int connection_made();
|
H A D | nghttp.cc | 912 if (connection_made() != 0) { in connected() 1098 rv = connection_made(); in on_upgrade_read() 1116 int HttpClient::connection_made() { in connection_made() function in nghttp2::HttpClient 1353 if (connection_made() != 0) { in tls_handshake()
|
H A D | shrpx_http2_session.cc | 1663 int Http2Session::connection_made() { in connection_made() function in shrpx::Http2Session 2012 if (connection_made() != 0) { in connected() 2114 if (connection_made() != 0) { in tls_handshake()
|
H A D | HttpServer.cc | 321 if (handler->connection_made() != 0) { in accept_connection() 739 if (connection_made() != 0) { in tls_handshake() 843 int Http2Handler::connection_made() { in connection_made() function in nghttp2::Http2Handler
|
H A D | h2load.cc | 1095 int Client::connection_made() { in connection_made() function in h2load::Client 1343 if (connection_made() != 0) { in connected() 1374 if (connection_made() != 0) { in tls_handshake()
|
/third_party/python/Lib/asyncio/ |
H A D | protocols.py | 21 def connection_made(self, transport): member in BaseProtocol 76 When the connection is made successfully, connection_made() is 86 * CM: connection_made() 126 * CM: connection_made()
|
H A D | base_subprocess.py | 181 loop.call_soon(self._protocol.connection_made, self) 263 def connection_made(self, transport): member in WriteSubprocessPipeProto
|
H A D | subprocess.py | 40 def connection_made(self, transport): member in SubprocessStreamProtocol
|
H A D | sslproto.py | 32 # * cm: connection_made() 379 def connection_made(self, transport): member in SSLProtocol 599 self._app_protocol.connection_made(self._get_app_transport())
|
H A D | unix_events.py | 483 self._loop.call_soon(self._protocol.connection_made, self) 484 # only start reading when connection_made() has been called 488 # only wake up the waiter when connection_made() has been called 627 self._loop.call_soon(self._protocol.connection_made, self) 633 # only start reading when connection_made() has been called 638 # only wake up the waiter when connection_made() has been called
|
H A D | selector_events.py | 934 self._loop.call_soon(self._protocol.connection_made, self) 935 # only start reading when connection_made() has been called 939 # only wake up the waiter when connection_made() has been called 1143 self._loop.call_soon(self._protocol.connection_made, self) 1144 # only start reading when connection_made() has been called 1148 # only wake up the waiter when connection_made() has been called
|
H A D | streams.py | 225 def connection_made(self, transport): member in StreamReaderProtocol
|