Home
last modified time | relevance | path

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

/external/python/bumble/bumble/transport/
Dfile.py47 write_transport, _ = await asyncio.get_running_loop().connect_write_pipe(
Dpty.py53 write_transport, _ = await asyncio.get_running_loop().connect_write_pipe(
/external/python/cpython3/Doc/library/
Dasyncio-platforms.rst54 and :meth:`loop.connect_write_pipe` methods are not implemented.
Dasyncio-llapi-index.rst177 * - ``await`` :meth:`loop.connect_write_pipe`
328 :meth:`loop.connect_write_pipe`, etc:
Dasyncio-subprocess.rst118 :meth:`loop.connect_read_pipe`, :meth:`loop.connect_write_pipe`,
Dasyncio-eventloop.rst1006 .. coroutinemethod:: loop.connect_write_pipe(protocol_factory, pipe)
1277 :meth:`~loop.connect_write_pipe`
1289 :meth:`~loop.connect_write_pipe`
1301 :meth:`~loop.connect_write_pipe`
Dasyncio-protocol.rst101 the :meth:`loop.connect_write_pipe` event loop method and
539 :meth:`loop.connect_read_pipe`, and :meth:`loop.connect_write_pipe`
/external/python/cpython3/Lib/asyncio/
Dbase_subprocess.py162 _, pipe = await loop.connect_write_pipe(
Devents.py485 async def connect_write_pipe(self, protocol_factory, pipe): member in AbstractEventLoop
Dbase_events.py1575 async def connect_write_pipe(self, protocol_factory, pipe): member in BaseEventLoop
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_events.py1377 write_transport, _ = await loop.connect_write_pipe(
1439 connect = self.loop.connect_write_pipe(lambda: proto, pipeobj)
1479 connect = self.loop.connect_write_pipe(lambda: proto, pipeobj)
1505 connect = self.loop.connect_write_pipe(lambda: proto, slave_write_obj)
1563 write_connect = self.loop.connect_write_pipe(lambda: write_proto,
2539 await loop.connect_write_pipe(f, mock.sentinel.pipe)
/external/python/cpython3/Misc/NEWS.d/
D3.8.0b1.rst931 :func:`asyncio.connect_write_pipe` factories to open :class:`asyncio.Stream`