/external/webrtc/examples/peerconnection/server/ |
D | data_socket.h | 83 return headers_received() && (method_ != POST || data_received()); in request_received() 86 bool data_received() const { in data_received() function
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_proactor_events.py | 62 self.assertFalse(self.protocol.data_received.called) 73 self.protocol.data_received.assert_called_with(b'data') 365 self.protocol.data_received.assert_called_with(b'data1') 367 self.protocol.data_received.assert_called_with(b'data2') 375 self.protocol.data_received.assert_called_with(b'data2') 382 self.protocol.data_received.assert_called_with(b'data3') 384 self.protocol.data_received.assert_called_with(b'data4') 391 self.protocol.data_received.assert_called_with(b'data5') 911 def data_received(self, data): member in ProactorEventLoopUnixSockSendfileTests.MyProto
|
D | test_sslproto.py | 146 self.assertIsNone(ssl_proto.data_received(b'data')) 250 def data_received(self, data): member in BaseStartTLS.test_start_tls_client_reg_proto_1.ClientProto 314 def data_received(self, data): member in BaseStartTLS.test_create_connection_memory_leak.ClientProto 398 def data_received(self, data): member in BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoSecond 469 def data_received(self, data): member in BaseStartTLS.test_start_tls_slow_client_cancel.ClientProto 534 def data_received(self, data): member in BaseStartTLS.test_start_tls_server_1.ServerProto
|
D | test_protocols.py | 23 self.assertIsNone(p.data_received(f))
|
D | test_sendfile.py | 55 def data_received(self, data): member in MySendfileProto 59 super().data_received(data) 77 def data_received(self, data): member in MyProto
|
D | test_windows_events.py | 32 def data_received(self, data): member in UpperProto
|
D | test_selector_events.py | 577 self.protocol.data_received.side_effect = LookupError() 583 self.assertTrue(self.protocol.data_received.called) 591 self.protocol.data_received.assert_called_with(b'data') 955 self.protocol.data_received.assert_called_with(b'data')
|
D | test_sock_lowlevel.py | 34 def data_received(self, data): member in MyProto
|
D | test_unix_events.py | 458 def data_received(self, data): member in SelectorEventLoopUnixSockSendfileTests.MyProto 688 self.protocol.data_received.assert_called_with(b'data') 710 self.assertFalse(self.protocol.data_received.called)
|
D | test_events.py | 96 def data_received(self, data): member in MyBaseProto 160 def data_received(self, data): member in MyReadPipeProto 667 def data_received(self, data): member in EventLoopTestsMixin.test_connect_accepted_socket.MyProto 668 super().data_received(data)
|
D | test_base_events.py | 1011 def data_received(self, data): member in MyProto 1971 def data_received(self, data): member in BaseLoopSockSendfileTests.MyProto
|
/external/python/cpython3/Lib/asyncio/ |
D | protocols.py | 94 def data_received(self, data): member in Protocol
|
D | sslproto.py | 518 def data_received(self, data): member in SSLProtocol 545 self._app_protocol.data_received(chunk)
|
D | base_subprocess.py | 284 def data_received(self, data): member in ReadSubprocessPipeProto
|
D | streams.py | 283 def data_received(self, data): member in StreamReaderProtocol
|
D | proactor_events.py | 269 self._protocol.data_received(data)
|
D | selector_events.py | 870 self._protocol.data_received(data)
|
D | unix_events.py | 500 self._protocol.data_received(data)
|
D | base_events.py | 254 def data_received(self, data): member in _SendfileFallbackProtocol
|
/external/python/cpython3/Doc/library/ |
D | asyncio-protocol.rst | 249 the protocol's :meth:`protocol.data_received() <Protocol.data_received>` 259 :meth:`protocol.data_received() <Protocol.data_received>` method 542 .. method:: Protocol.data_received(data) 557 ``data_received()`` is not called anymore. 582 [-> data_received]* 731 def data_received(self, data): 783 def data_received(self, data): 942 def data_received(self, data):
|
D | asyncio-llapi-index.rst | 433 * - ``callback`` :meth:`data_received() <Protocol.data_received>`
|
/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/pexpect/ |
D | _async.py | 53 def data_received(self, data): member in PatternWaiter
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0b5.rst | 119 data_received() being called before connection_made(). 130 data_received() could be called before the handshake started, causing the
|
D | 3.6.6rc1.rst | 173 data_received() could be called before the handshake started, causing the
|
D | 3.8.0a1.rst | 4442 data_received() being called before connection_made(). 4470 data_received() could be called before the handshake started, causing the
|