/third_party/python/Lib/test/test_asyncio/ |
D | test_protocols.py | 12 self.assertIsNone(p.connection_made(f)) 21 self.assertIsNone(p.connection_made(f)) 32 self.assertIsNone(p.connection_made(f)) 43 self.assertIsNone(dp.connection_made(f)) 52 self.assertIsNone(sp.connection_made(f))
|
D | test_sslproto.py | 45 def connection_made(self, ssl_proto, *, do_handshake=None): member in SslProtoHandshakeTests 56 ssl_proto.connection_made(transport) 78 self.connection_made(ssl_proto) 103 self.connection_made(ssl_proto) 113 transport = self.connection_made(ssl_proto) 125 self.connection_made(ssl_proto) 140 self.connection_made(ssl_proto) 150 self.connection_made(ssl_proto) 245 def connection_made(proto, tr): member in BaseStartTLS.test_start_tls_client_reg_proto_1.ClientProto 308 def connection_made(proto, tr): member in BaseStartTLS.test_create_connection_memory_leak.ClientProto [all …]
|
D | test_events.py | 94 def connection_made(self, transport): member in MyBaseProto 117 def connection_made(self, transport): member in MyProto 118 super().connection_made(transport) 135 def connection_made(self, transport): member in MyDatagramProto 168 def connection_made(self, transport): member in MyReadPipeProto 203 def connection_made(self, transport): member in MyWritePipeProto 232 def connection_made(self, transport): member in MySubprocessProtocol 1142 def connection_made(self, transport): member in EventLoopTestsMixin.test_create_server_sock.TestMyProto 1143 super().connection_made(transport) 1181 def connection_made(self, transport): member in EventLoopTestsMixin.test_create_server_dual_stack.TestMyProto [all …]
|
D | test_windows_events.py | 29 def connection_made(self, trans): member in UpperProto
|
D | test_sendfile.py | 43 def connection_made(self, transport): member in MySendfileProto 78 def connection_made(self, transport): member in MyProto
|
D | test_subprocess.py | 50 protocol.connection_made._is_coroutine = False 65 self.assertTrue(protocol.connection_made.called)
|
/third_party/python/Lib/asyncio/ |
D | protocols.py | 21 def connection_made(self, transport): member in BaseProtocol
|
D | base_subprocess.py | 181 loop.call_soon(self._protocol.connection_made, self) 263 def connection_made(self, transport): member in WriteSubprocessPipeProto
|
D | sslproto.py | 471 def connection_made(self, transport): member in SSLProtocol 655 self._app_protocol.connection_made(self._app_transport)
|
D | subprocess.py | 40 def connection_made(self, transport): member in SubprocessStreamProtocol
|
D | selector_events.py | 776 self._loop.call_soon(self._protocol.connection_made, self) 1003 self._loop.call_soon(self._protocol.connection_made, self)
|
D | streams.py | 220 def connection_made(self, transport): member in StreamReaderProtocol
|
D | unix_events.py | 471 self._loop.call_soon(self._protocol.connection_made, self) 607 self._loop.call_soon(self._protocol.connection_made, self)
|
/third_party/nghttp2/src/ |
D | shrpx_live_check.h | 83 int connection_made();
|
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
|
D | shrpx_http2_session.h | 129 int connection_made();
|
D | HttpServer.h | 168 int connection_made();
|
D | nghttp.h | 240 int connection_made();
|
D | h2load.h | 449 int connection_made();
|
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()
|
D | nghttp.cc | 913 if (connection_made() != 0) { in connected() 1099 rv = connection_made(); in on_upgrade_read() 1117 int HttpClient::connection_made() { in connection_made() function in nghttp2::HttpClient 1354 if (connection_made() != 0) { in tls_handshake()
|
D | HttpServer.cc | 317 if (handler->connection_made() != 0) { in accept_connection() 735 if (connection_made() != 0) { in tls_handshake() 839 int Http2Handler::connection_made() { in connection_made() function in nghttp2::Http2Handler
|
/third_party/python/Doc/library/ |
D | asyncio-protocol.rst | 490 .. method:: BaseProtocol.connection_made(transport) 581 start -> connection_made 639 start -> connection_made 726 def connection_made(self, transport): 779 def connection_made(self, transport): 832 def connection_made(self, transport): 881 def connection_made(self, transport): 939 def connection_made(self, transport):
|
D | asyncio-llapi-index.rst | 415 * - ``callback`` :meth:`connection_made() <BaseProtocol.connection_made>`
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0b5.rst | 119 data_received() being called before connection_made(). 128 Fix a race condition in SSLProtocol.connection_made() of asyncio.sslproto:
|