/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | rtspconnection.c | 111 create_connection (GSocketConnection ** client_conn, in create_connection() function 216 create_connection (&client_get, &server_get); in GST_START_TEST() 254 create_connection (&client_post, &server_post); in GST_START_TEST() 303 create_connection (&client_post, &server_post); in GST_START_TEST() 380 create_connection (&client_post, &server_post); in GST_START_TEST() 409 create_connection (&client_get, &server_get); in GST_START_TEST() 467 create_connection (&client_post, &server_post); in GST_START_TEST() 534 create_connection (&input_conn, &output_conn); in GST_START_TEST() 615 create_connection (&input_conn, &output_conn); in GST_START_TEST() 726 create_connection (&conn1, &conn2); in GST_START_TEST() [all …]
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_base_events.py | 1101 coro = self.loop.create_connection(MyProto, 'example.com', 80) 1123 coro = self.loop.create_connection(MyProto, '127.0.0.1', 80) 1129 coro = self.loop.create_connection( 1136 coro = self.loop.create_connection(MyProto, sock=sock) 1196 coro = self.loop.create_connection(MyProto) 1207 coro = self.loop.create_connection(MyProto, 'example.com', 80) 1222 coro = self.loop.create_connection(MyProto, 'example.com', 80) 1238 coro = self.loop.create_connection( 1265 coro = self.loop.create_connection( 1287 coro = self.loop.create_connection(asyncio.Protocol, '1.2.3.4', 80) [all …]
|
D | test_sslproto.py | 262 tr, proto = await self.loop.create_connection( 327 tr, proto = await self.loop.create_connection( 413 tr, proto = await self.loop.create_connection( 483 tr, proto = await self.loop.create_connection( 621 self.loop.create_connection(
|
D | test_buffered_proto.py | 50 tr, pr = await self.loop.create_connection(
|
D | test_events.py | 539 conn_fut = self.loop.create_connection( 598 def _test_create_ssl_connection(self, httpd, create_connection, argument 600 conn_fut = create_connection(ssl=test_utils.dummy_ssl_context()) 619 conn_fut = create_connection(ssl=True) 627 conn_fut = create_connection(ssl=True) 638 create_connection = functools.partial( 639 self.loop.create_connection, 642 self._test_create_ssl_connection(httpd, create_connection, 653 create_connection = functools.partial( 658 self._test_create_ssl_connection(httpd, create_connection, [all …]
|
/third_party/grpc/test/cpp/naming/utils/ |
D | tcp_connect.py | 43 socket.create_connection([args.server_host, args.server_port],
|
/third_party/mesa3d/.gitlab-ci/bare-metal/ |
D | eth008-power-relay.py | 20 c = socket.create_connection((host, int(port)))
|
/third_party/python/Doc/library/ |
D | asyncio-llapi-index.rst | 149 * - ``await`` :meth:`loop.create_connection` 266 * Using ``loop.create_connection()`` to implement 269 * Using ``loop.create_connection()`` to 307 :meth:`loop.create_connection`, :meth:`loop.create_unix_connection`, 327 :meth:`loop.create_connection`, :meth:`loop.create_unix_connection`,
|
D | asyncio-protocol.rst | 14 APIs such as :meth:`loop.create_connection`. They use 45 (such as :meth:`loop.create_connection`) usually accept a 124 event loop methods like :meth:`loop.create_connection`, 537 :meth:`loop.create_unix_server`, :meth:`loop.create_connection`, 768 A TCP echo client using the :meth:`loop.create_connection` method, sends 799 transport, protocol = await loop.create_connection( 927 :meth:`loop.create_connection` method with a protocol:: 964 transport, protocol = await loop.create_connection(
|
D | asyncio-stream.rst | 67 :meth:`loop.create_connection`. 368 example uses the low-level :meth:`loop.create_connection` method. 504 the :meth:`loop.create_connection` method.
|
/third_party/gstreamer/gstplugins_bad/ext/dtls/ |
D | gstdtlsdec.c | 110 static void create_connection (GstDtlsDec *, gchar * id); 272 create_connection (self, self->connection_id); in gst_dtls_dec_set_property() 280 create_connection (self, self->connection_id); in gst_dtls_dec_set_property() 771 create_connection (GstDtlsDec * self, gchar * id) in create_connection() function
|
/third_party/python/Lib/test/ |
D | test_telnetlib.py | 156 old_conn = socket.create_connection 157 socket.create_connection = new_conn 160 socket.create_connection = old_conn
|
D | test_smtpnet.py | 14 with socket.create_connection((host, port)) as sock:
|
D | mock_socket.py | 117 def create_connection(address, timeout=socket_module._GLOBAL_DEFAULT_TIMEOUT, function
|
D | test_ftplib.py | 149 s = socket.create_connection((ip, port), timeout=TIMEOUT) 166 s = socket.create_connection((ip, port), timeout=TIMEOUT) 716 conn = socket.create_connection((host, port), timeout=TIMEOUT) 729 socket.create_connection((self.client.sock.getpeername()[0], port), 739 socket.create_connection((trusted_host, port), timeout=TIMEOUT).close() 881 conn = socket.create_connection((host, port), timeout=TIMEOUT)
|
D | test_socket.py | 5082 self.cli = socket.create_connection((HOST, self.port)) 5118 socket.create_connection((HOST, port)) 5142 socket.create_connection((HOST, 1234)) 5172 self.cli = socket.create_connection((HOST, self.port), 5179 self.cli = socket.create_connection((HOST, self.port), 5193 self.cli = socket.create_connection((HOST, self.port)) 5205 self.cli = socket.create_connection((HOST, self.port), timeout=None) 5213 self.cli = socket.create_connection((HOST, self.port), timeout=30) 5218 self.cli = socket.create_connection((HOST, self.port), 30) 5245 self.cli = sock = socket.create_connection((HOST, self.port)) [all …]
|
D | test_socketserver.py | 352 with socket.create_connection(self.server_address): 515 with socket.create_connection(server.server_address):
|
D | test_largefile.py | 227 with socket.create_connection(("127.0.0.1", port)) as client:
|
D | test_httplib.py | 125 self._create_connection = self.create_connection 132 def create_connection(self, *pos, **kw): member in FakeSocketHTTPConnection 2032 def create_connection(address, timeout=None, source_address=None): function 2034 return create_connection
|
/third_party/grpc/src/python/grpcio_tests/tests/unit/ |
D | _tcp_proxy.py | 37 proxy_socket = socket.create_connection((gateway_address, gateway_port))
|
/third_party/python/Lib/ |
D | ftplib.py | 158 self.sock = socket.create_connection((self.host, self.port), self.timeout, 354 conn = socket.create_connection((host, port), self.timeout,
|
D | poplib.py | 112 return socket.create_connection((self.host, self.port), timeout)
|
D | imaplib.py | 301 return socket.create_connection(address, timeout) 302 return socket.create_connection(address)
|
D | ssl.py | 255 from socket import socket, SOCK_STREAM, create_connection 1522 with create_connection(addr, timeout=timeout) as sock:
|
/third_party/python/Lib/asyncio/ |
D | events.py | 301 async def create_connection( member in AbstractEventLoop
|