Home
last modified time | relevance | path

Searched refs:open_connection (Results 1 – 12 of 12) sorted by relevance

/external/autotest/scheduler/
Dscheduler_lib_unittest.py39 connection_manager.open_connection = mock.MagicMock()
41 connection_manager.open_connection.assert_called_once_with()
42 connection_manager.open_connection.reset_mock()
45 connection_manager.open_connection.call_count == 0)
46 connection_manager.open_connection.reset_mock()
Dscheduler_lib.py79 def open_connection(cls): member in ConnectionManager
95 self.db_connection = self.open_connection()
/external/python/cpython3/Doc/library/
Dasyncio-stream.rst21 reader, writer = await asyncio.open_connection(
46 .. coroutinefunction:: open_connection(host=None, port=None, \*, \
114 Similar to :func:`open_connection` but operates on Unix sockets.
163 directly; use :func:`open_connection` and :func:`start_server`
227 directly; use :func:`open_connection` and :func:`start_server`
307 TCP echo client using the :func:`asyncio.open_connection` function::
312 reader, writer = await asyncio.open_connection(
387 reader, writer = await asyncio.open_connection(
390 reader, writer = await asyncio.open_connection(
431 :func:`open_connection` function::
[all …]
Dasyncio-api-index.rst135 * - ``await`` :func:`open_connection`
Dasyncio-eventloop.rst422 The :func:`open_connection` function is a high-level alternative
834 and :func:`asyncio.open_connection() <open_connection>`.
1589 using the high-level :func:`asyncio.open_connection` function
Dasyncio-protocol.rst813 example uses the high-level :func:`asyncio.open_connection` function.
980 created by the :func:`open_connection` function in a coroutine.
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_streams.py57 conn_fut = asyncio.open_connection(*httpd.address,
83 conn_fut = asyncio.open_connection(
113 conn_fut = asyncio.open_connection(*httpd.address,
611 reader, writer = await asyncio.open_connection(
782 reader, writer = await asyncio.open_connection(
866 asyncio.open_connection(*httpd.address, loop=self.loop))
883 asyncio.open_connection(*httpd.address, loop=self.loop))
Dtest_sslproto.py578 reader, writer = await asyncio.open_connection(
617 reader, writer = await asyncio.open_connection(
653 reader, writer = await asyncio.open_connection(
/external/python/cpython3/Misc/NEWS.d/
D3.7.0rc1.rst181 Improve the documentation of :func:`asyncio.open_connection`,
/external/python/cpython3/Lib/asyncio/
Dstreams.py53 async def open_connection(host=None, port=None, *, function
/external/python/cpython3/Doc/whatsnew/
D3.5.rst194 reader, writer = await asyncio.open_connection(domain, 80)
D3.7.rst730 * The :func:`asyncio.open_connection`, :func:`asyncio.start_server` functions,