Searched refs:DatagramProtocol (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Lib/asyncio/ |
D | protocols.py | 166 class DatagramProtocol(BaseProtocol): class
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_protocols.py | 42 dp = asyncio.DatagramProtocol()
|
D | test_base_events.py | 1026 class MyDatagramProto(asyncio.DatagramProtocol): 1606 asyncio.DatagramProtocol, remote_addr=('127.0.0.1', 0)) 1633 asyncio.DatagramProtocol, family=socket.AF_INET) 1638 asyncio.DatagramProtocol, local_addr=('127.0.0.1', 0)) 1645 asyncio.DatagramProtocol, 1655 asyncio.DatagramProtocol, family=socket.AF_INET) 1663 asyncio.DatagramProtocol)
|
D | test_proactor_events.py | 483 self.protocol = test_utils.make_test_protocol(asyncio.DatagramProtocol) 819 self.protocol = test_utils.make_test_protocol(asyncio.DatagramProtocol)
|
D | test_sendfile.py | 290 asyncio.DatagramProtocol,
|
D | test_selector_events.py | 1078 self.protocol = test_utils.make_test_protocol(asyncio.DatagramProtocol)
|
D | test_events.py | 117 class MyDatagramProto(asyncio.DatagramProtocol):
|
/external/python/cpython3/Doc/library/ |
D | asyncio-protocol.rst | 61 :class:`DatagramProtocol`, and :class:`SubprocessProtocol` classes. 469 .. class:: DatagramProtocol(BaseProtocol) 653 .. method:: DatagramProtocol.datagram_received(data, addr) 659 .. method:: DatagramProtocol.error_received(exc) 678 :meth:`DatagramProtocol.error_received` but otherwise ignored.
|
D | asyncio-llapi-index.rst | 461 <DatagramProtocol.datagram_received>` 464 * - ``callback`` :meth:`error_received() <DatagramProtocol.error_received>`
|