Home
last modified time | relevance | path

Searched refs:create_connection (Results 1 – 25 of 53) sorted by relevance

123

/third_party/gstreamer/gstplugins_base/tests/check/libs/
Drtspconnection.c111 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/
Dtest_base_events.py1101 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 …]
Dtest_sslproto.py262 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(
Dtest_buffered_proto.py50 tr, pr = await self.loop.create_connection(
Dtest_events.py539 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/
Dtcp_connect.py43 socket.create_connection([args.server_host, args.server_port],
/third_party/mesa3d/.gitlab-ci/bare-metal/
Deth008-power-relay.py20 c = socket.create_connection((host, int(port)))
/third_party/python/Doc/library/
Dasyncio-llapi-index.rst149 * - ``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`,
Dasyncio-protocol.rst14 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(
Dasyncio-stream.rst67 :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/
Dgstdtlsdec.c110 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/
Dtest_telnetlib.py156 old_conn = socket.create_connection
157 socket.create_connection = new_conn
160 socket.create_connection = old_conn
Dtest_smtpnet.py14 with socket.create_connection((host, port)) as sock:
Dmock_socket.py117 def create_connection(address, timeout=socket_module._GLOBAL_DEFAULT_TIMEOUT, function
Dtest_ftplib.py149 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)
Dtest_socket.py5082 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 …]
Dtest_socketserver.py352 with socket.create_connection(self.server_address):
515 with socket.create_connection(server.server_address):
Dtest_largefile.py227 with socket.create_connection(("127.0.0.1", port)) as client:
Dtest_httplib.py125 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.py37 proxy_socket = socket.create_connection((gateway_address, gateway_port))
/third_party/python/Lib/
Dftplib.py158 self.sock = socket.create_connection((self.host, self.port), self.timeout,
354 conn = socket.create_connection((host, port), self.timeout,
Dpoplib.py112 return socket.create_connection((self.host, self.port), timeout)
Dimaplib.py301 return socket.create_connection(address, timeout)
302 return socket.create_connection(address)
Dssl.py255 from socket import socket, SOCK_STREAM, create_connection
1522 with create_connection(addr, timeout=timeout) as sock:
/third_party/python/Lib/asyncio/
Devents.py301 async def create_connection( member in AbstractEventLoop

123