Home
last modified time | relevance | path

Searched refs:data_received (Results 1 – 20 of 20) sorted by relevance

/external/webrtc/webrtc/examples/peerconnection/server/
Ddata_socket.h88 return headers_received() && (method_ != POST || data_received()); in request_received()
91 bool data_received() const { in data_received() function
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_proactor_events.py57 self.assertFalse(self.protocol.data_received.called)
68 self.protocol.data_received.assert_called_with(b'data')
360 self.protocol.data_received.assert_called_with(b'data1')
362 self.protocol.data_received.assert_called_with(b'data2')
370 self.protocol.data_received.assert_called_with(b'data2')
377 self.protocol.data_received.assert_called_with(b'data3')
379 self.protocol.data_received.assert_called_with(b'data4')
386 self.protocol.data_received.assert_called_with(b'data5')
547 self.protocol.data_received.assert_called_with(b'data')
882 def data_received(self, data): member in ProactorEventLoopUnixSockSendfileTests.MyProto
Dtest_sslproto.py141 self.assertIsNone(ssl_proto.data_received(b'data'))
245 def data_received(self, data): member in BaseStartTLS.test_start_tls_client_reg_proto_1.ClientProto
325 def data_received(self, data): member in BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoSecond
396 def data_received(self, data): member in BaseStartTLS.test_start_tls_slow_client_cancel.ClientProto
460 def data_received(self, data): member in BaseStartTLS.test_start_tls_server_1.ServerProto
Dtest_windows_events.py25 def data_received(self, data): member in UpperProto
Dtest_events.py93 def data_received(self, data): member in MyBaseProto
157 def data_received(self, data): member in MyReadPipeProto
793 def data_received(self, data): member in EventLoopTestsMixin.test_connect_accepted_socket.MyProto
794 super().data_received(data)
2160 def data_received(self, data): member in SockSendfileMixin.MyProto
2286 def data_received(self, data): member in SendfileMixin.MySendfileProto
2288 super().data_received(data)
3073 self.assertIsNone(p.data_received(f))
Dtest_selector_events.py964 self.protocol.data_received.side_effect = LookupError()
970 self.assertTrue(self.protocol.data_received.called)
978 self.protocol.data_received.assert_called_with(b'data')
1342 self.protocol.data_received.assert_called_with(b'data')
Dtest_unix_events.py443 def data_received(self, data): member in SelectorEventLoopUnixSockSendfileTests.MyProto
673 self.protocol.data_received.assert_called_with(b'data')
695 self.assertFalse(self.protocol.data_received.called)
Dtest_base_events.py994 def data_received(self, data): member in MyProto
1896 def data_received(self, data): member in BaseLoopSockSendfileTests.MyProto
/external/python/cpython3/Lib/asyncio/
Dprotocols.py90 def data_received(self, data): member in Protocol
Dsslproto.py516 def data_received(self, data): member in SSLProtocol
541 self._app_protocol.data_received(chunk)
Dbase_subprocess.py283 def data_received(self, data): member in ReadSubprocessPipeProto
Dstreams.py256 def data_received(self, data): member in StreamReaderProtocol
Dproactor_events.py244 self._protocol.data_received(data)
Dunix_events.py485 self._protocol.data_received(data)
Dselector_events.py813 self._protocol.data_received(data)
Dbase_events.py228 def data_received(self, data): member in _SendfileFallbackProtocol
/external/python/cpython3/Doc/library/
Dasyncio-protocol.rst245 the protocol's :meth:`protocol.data_received() <Protocol.data_received>`
255 :meth:`protocol.data_received() <Protocol.data_received>` method
534 .. method:: Protocol.data_received(data)
549 ``data_received()`` is not called anymore.
574 [-> data_received]*
726 def data_received(self, data):
779 def data_received(self, data):
937 def data_received(self, data):
Dasyncio-llapi-index.rst433 * - ``callback`` :meth:`data_received() <Protocol.data_received>`
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b5.rst119 data_received() being called before connection_made().
130 data_received() could be called before the handshake started, causing the
D3.6.6rc1.rst173 data_received() could be called before the handshake started, causing the