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.rst28 * :meth:`loop.create_unix_connection` and
Dasyncio-stream.rst116 See also the documentation of :meth:`loop.create_unix_connection`.
Dasyncio-protocol.rst121 :meth:`loop.create_unix_connection`,
530 :meth:`loop.create_unix_connection`, :meth:`loop.connect_accepted_socket`,
Dasyncio-eventloop.rst488 .. coroutinemethod:: loop.create_unix_connection(protocol_factory, \
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_unix_events.py287 coro = self.loop.create_unix_connection(lambda: None, path)
361 coro = self.loop.create_unix_connection(lambda: None,
386 coro = self.loop.create_unix_connection(
392 coro = self.loop.create_unix_connection(
399 coro = self.loop.create_unix_connection(
406 coro = self.loop.create_unix_connection(
415 coro = self.loop.create_unix_connection(lambda: None, path='spam',
Dtest_events.py623 conn_fut = self.loop.create_unix_connection(
755 self.loop.create_unix_connection,
1072 f_c = self.loop.create_unix_connection(
1139 f_c = self.loop.create_unix_connection(MyProto, path,
1200 f_c = self.loop.create_unix_connection(MyProto, path,
/external/python/cpython3/Lib/asyncio/
Devents.py383 async def create_unix_connection( member in AbstractEventLoop
Dstreams.py127 transport, _ = await loop.create_unix_connection(
Dunix_events.py206 async def create_unix_connection( member in _UnixSelectorEventLoop
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a3.rst535 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(),