Searched refs:pipe_data_received (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Lib/asyncio/ |
D | protocols.py | 176 def pipe_data_received(self, fd, data): member in SubprocessProtocol
|
D | subprocess.py | 63 def pipe_data_received(self, fd, data): member in SubprocessStreamProtocol
|
D | base_subprocess.py | 204 self._call(self._protocol.pipe_data_received, fd, data)
|
/external/python/cpython3/Doc/library/ |
D | asyncio-llapi-index.rst | 474 * - ``callback`` :meth:`pipe_data_received() 475 <SubprocessProtocol.pipe_data_received>`
|
D | asyncio-protocol.rst | 685 .. method:: SubprocessProtocol.pipe_data_received(fd, data) 1000 def pipe_data_received(self, fd, data): 1029 # pipe_data_received() method of the protocol.
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_events.py | 219 def pipe_data_received(self, fd, data): member in MySubprocessProtocol 3085 self.assertIsNone(sp.pipe_data_received(1, f))
|