Searched refs:open_connection (Results 1 – 12 of 12) sorted by relevance
/external/autotest/scheduler/ |
D | scheduler_lib_unittest.py | 39 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()
|
D | scheduler_lib.py | 79 def open_connection(cls): member in ConnectionManager 95 self.db_connection = self.open_connection()
|
/external/python/cpython3/Doc/library/ |
D | asyncio-stream.rst | 21 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 …]
|
D | asyncio-api-index.rst | 135 * - ``await`` :func:`open_connection`
|
D | asyncio-eventloop.rst | 422 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
|
D | asyncio-protocol.rst | 813 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/ |
D | test_streams.py | 57 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))
|
D | test_sslproto.py | 578 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/ |
D | 3.7.0rc1.rst | 181 Improve the documentation of :func:`asyncio.open_connection`,
|
/external/python/cpython3/Lib/asyncio/ |
D | streams.py | 53 async def open_connection(host=None, port=None, *, function
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 194 reader, writer = await asyncio.open_connection(domain, 80)
|
D | 3.7.rst | 730 * The :func:`asyncio.open_connection`, :func:`asyncio.start_server` functions,
|