Searched refs:_protocol (Results 1 – 25 of 25) sorted by relevance
/external/python/cpython3/Lib/asyncio/ |
D | base_subprocess.py | 17 self._protocol = protocol 88 self._protocol = protocol 91 return self._protocol 181 loop.call_soon(self._protocol.connection_made, self) 201 self._call(self._protocol.pipe_connection_lost, fd, exc) 205 self._call(self._protocol.pipe_data_received, fd, data) 217 self._call(self._protocol.process_exited) 248 self._protocol.connection_lost(exc) 252 self._protocol = None 275 self.proc._protocol.pause_writing() [all …]
|
D | transports.py | 278 self._protocol.pause_writing() 286 'protocol': self._protocol, 294 self._protocol.resume_writing() 302 'protocol': self._protocol,
|
D | unix_events.py | 446 self._protocol = protocol 456 self._protocol = None 461 self._loop.call_soon(self._protocol.connection_made, self) 500 self._protocol.data_received(data) 506 self._loop.call_soon(self._protocol.eof_received) 526 self._protocol = protocol 529 return self._protocol 553 'protocol': self._protocol, 564 self._protocol.connection_lost(exc) 568 self._protocol = None [all …]
|
D | proactor_events.py | 66 self._loop.call_soon(self._protocol.connection_made, self) 94 self._protocol = protocol 97 return self._protocol 128 'protocol': self._protocol, 155 self._protocol.connection_lost(exc) 235 keep_open = self._protocol.eof_received() 258 if isinstance(self._protocol, protocols.BufferedProtocol): 260 protocols._feed_data_to_buffered_proto(self._protocol, data) 269 self._protocol.data_received(data) 530 self._protocol.error_received(exc) [all …]
|
D | selector_events.py | 683 self._protocol = protocol 687 return self._protocol 717 'protocol': self._protocol, 736 self._protocol.connection_lost(exc) 740 self._protocol = None 776 self._loop.call_soon(self._protocol.connection_made, self) 820 buf = self._protocol.get_buffer(-1) 845 self._protocol.buffer_updated(nbytes) 870 self._protocol.data_received(data) 882 keep_open = self._protocol.eof_received() [all …]
|
D | streams.py | 322 self._protocol = protocol 359 await self._protocol._get_close_waiter(self) 387 await self._protocol._drain_helper()
|
D | subprocess.py | 119 self._protocol = protocol
|
/external/arm-trusted-firmware/drivers/arm/css/scmi/ |
D | scmi_private.h | 71 #define SCMI_MSG_CREATE(_protocol, _msg_id, _token) \ argument 72 ((((_protocol) & SCMI_MSG_PROTO_ID_MASK) << SCMI_MSG_PROTO_ID_SHIFT) | \
|
/external/python/cpython2/Lib/ |
D | shelve.py | 96 self._protocol = protocol 131 p = Pickler(f, self._protocol)
|
/external/tensorflow/tensorflow/python/data/experimental/ops/ |
D | data_service_ops.py | 124 self._protocol = ops.convert_to_tensor( 153 protocol=self._protocol, 166 protocol=self._protocol,
|
/external/python/cpython3/Lib/ |
D | shelve.py | 89 self._protocol = protocol 123 p = Pickler(f, self._protocol)
|
/external/libnl/python/netlink/route/ |
D | tc.py | 237 self._protocol = netlink.NETLINK_ROUTE 400 self._protocol = netlink.NETLINK_ROUTE 469 self._protocol = netlink.NETLINK_ROUTE
|
D | address.py | 29 self._protocol = netlink.NETLINK_ROUTE
|
D | link.py | 120 self._protocol = netlink.NETLINK_ROUTE
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_transports.py | 80 transport._protocol = mock.Mock()
|
D | test_unix_events.py | 771 self.assertIsNotNone(tr._protocol) 779 self.assertIsNone(tr._protocol) 784 self.assertIsNotNone(tr._protocol) 792 self.assertIsNone(tr._protocol) 1042 self.assertIsNotNone(tr._protocol) 1050 self.assertIsNone(tr._protocol) 1055 self.assertIsNotNone(tr._protocol) 1063 self.assertIsNone(tr._protocol)
|
D | test_proactor_events.py | 876 tr._protocol.error_received = mock.Mock() 878 tr._protocol.error_received.assert_called_with(err) 886 tr._protocol.error_received = mock.Mock() 889 tr._protocol.error_received.assert_called_with(err)
|
D | test_subprocess.py | 72 self.assertIsNone(transport._protocol)
|
D | test_selector_events.py | 476 self.assertIsNotNone(tr._protocol) 484 self.assertIsNone(tr._protocol)
|
D | test_streams.py | 119 writer._protocol.connection_lost(ZeroDivisionError())
|
/external/python/cpython3/Lib/test/ |
D | test_shelve.py | 162 self.assertEqual(s._protocol, 3)
|
/external/libnl/python/netlink/ |
D | core.py | 567 socket = lookup_socket(self._protocol) 575 socket = lookup_socket(self._protocol)
|
/external/webrtc/examples/objc/AppRTCMobile/third_party/SocketRocket/ |
D | SRWebSocket.m | 274 @synthesize protocol = _protocol; 463 _protocol = negotiatedProtocol;
|
/external/python/cpython2/Doc/library/ |
D | xmlrpclib.rst | 418 .. _protocol-error-objects:
|
/external/python/cpython3/Doc/library/ |
D | xmlrpc.client.rst | 418 .. _protocol-error-objects:
|