Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/library/
Dasyncio-llapi-index.rst155 * - ``await`` :meth:`loop.create_unix_connection`
307 :meth:`loop.create_connection`, :meth:`loop.create_unix_connection`,
327 :meth:`loop.create_connection`, :meth:`loop.create_unix_connection`,
Dasyncio-platforms.rst38 * :meth:`loop.create_unix_connection` and
Dasyncio-stream.rst124 See also the documentation of :meth:`loop.create_unix_connection`.
Dasyncio-protocol.rst125 :meth:`loop.create_unix_connection`,
538 :meth:`loop.create_unix_connection`, :meth:`loop.connect_accepted_socket`,
Dasyncio-eventloop.rst570 .. coroutinemethod:: loop.create_unix_connection(protocol_factory, \
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_unix_events.py311 coro = self.loop.create_unix_connection(lambda: None, path)
385 coro = self.loop.create_unix_connection(lambda: None,
410 coro = self.loop.create_unix_connection(
416 coro = self.loop.create_unix_connection(
423 coro = self.loop.create_unix_connection(
430 coro = self.loop.create_unix_connection(
439 coro = self.loop.create_unix_connection(lambda: None, path='spam',
Dtest_events.py550 conn_fut = self.loop.create_unix_connection(
654 self.loop.create_unix_connection,
968 f_c = self.loop.create_unix_connection(
1035 f_c = self.loop.create_unix_connection(MyProto, path,
1096 f_c = self.loop.create_unix_connection(MyProto, path,
/external/python/cpython3/Lib/asyncio/
Devents.py382 async def create_unix_connection( member in AbstractEventLoop
Dstreams.py97 transport, _ = await loop.create_unix_connection(
Dunix_events.py228 async def create_unix_connection( member in _UnixSelectorEventLoop
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a3.rst531 asyncio: Support pathlib.Path in create_unix_connection; sock arg should be
/external/python/cpython3/Misc/
DHISTORY2305 New APIs: loop.create_unix_connection(), loop.create_unix_server(),