Home
last modified time | relevance | path

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

12

/third_party/python/Lib/test/test_asyncio/
Dtest_sslproto.py146 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
315 def data_received(self, data): member in BaseStartTLS.test_create_connection_memory_leak.ClientProto
400 def data_received(self, data): member in BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoSecond
471 def data_received(self, data): member in BaseStartTLS.test_start_tls_slow_client_cancel.ClientProto
536 def data_received(self, data): member in BaseStartTLS.test_start_tls_server_1.ServerProto
Dtest_protocols.py23 self.assertIsNone(p.data_received(f))
Dtest_proactor_events.py63 self.assertFalse(self.protocol.data_received.called)
78 self.protocol.data_received.assert_called_with(bytearray(buf))
383 self.protocol.data_received.assert_called_with(bytearray(msg))
391 self.protocol.data_received.assert_called_with(bytearray(msgs[1]))
400 self.protocol.data_received.assert_called_with(bytearray(msg))
407 self.protocol.data_received.assert_called_with(bytearray(msgs[4]))
927 def data_received(self, data): member in ProactorEventLoopUnixSockSendfileTests.MyProto
Dtest_sendfile.py60 def data_received(self, data): member in MySendfileProto
64 super().data_received(data)
82 def data_received(self, data): member in MyProto
Dtest_windows_events.py32 def data_received(self, data): member in UpperProto
Dtest_selector_events.py577 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')
Dtest_sock_lowlevel.py38 def data_received(self, data): member in MyProto
Dtest_unix_events.py467 def data_received(self, data): member in SelectorEventLoopUnixSockSendfileTests.MyProto
697 self.protocol.data_received.assert_called_with(b'data')
719 self.assertFalse(self.protocol.data_received.called)
Dtest_events.py101 def data_received(self, data): member in MyBaseProto
173 def data_received(self, data): member in MyReadPipeProto
692 def data_received(self, data): member in EventLoopTestsMixin.test_connect_accepted_socket.MyProto
693 super().data_received(data)
/third_party/python/Lib/asyncio/
Dprotocols.py94 def data_received(self, data): member in Protocol
Dsslproto.py518 def data_received(self, data): member in SSLProtocol
545 self._app_protocol.data_received(chunk)
Dbase_subprocess.py284 def data_received(self, data): member in ReadSubprocessPipeProto
Dstreams.py264 def data_received(self, data): member in StreamReaderProtocol
Dproactor_events.py270 self._protocol.data_received(data)
Dselector_events.py870 self._protocol.data_received(data)
Dunix_events.py510 self._protocol.data_received(data)
/third_party/python/Doc/library/
Dasyncio-protocol.rst249 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):
Dasyncio-llapi-index.rst433 * - ``callback`` :meth:`data_received() <Protocol.data_received>`
/third_party/gstreamer/gstplugins_bad/ext/smoothstreaming/
Dgstmssdemux.c209 gstadaptivedemux_class->data_received = gst_mss_demux_data_received; in gst_mss_demux_class_init()
712 return GST_ADAPTIVE_DEMUX_CLASS (parent_class)->data_received (demux, in gst_mss_demux_data_received()
732 return GST_ADAPTIVE_DEMUX_CLASS (parent_class)->data_received (demux, stream, in gst_mss_demux_data_received()
/third_party/gstreamer/gstplugins_bad/ext/curl/
Dgstcurlhttpsrc.h241 gboolean data_received; member
Dgstcurlhttpsrc.c805 source->data_received = FALSE; in gst_curl_http_src_init()
1077 src->data_received = FALSE; in gst_curl_http_src_create()
1132 if (src->data_received == TRUE) { in gst_curl_http_src_create()
1194 src->data_received = TRUE; in gst_curl_http_src_create()
1463 src->data_received = FALSE; in gst_curl_http_src_handle_response()
2555 elt->data_received = FALSE;
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/adaptivedemux/
Dgstadaptivedemux.h457 …GstFlowReturn (*data_received) (GstAdaptiveDemux * demux, GstAdaptiveDemuxStream * stream, GstBuff… member
/third_party/python/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
/third_party/node/src/
Dnode_http2.h765 uint64_t data_received; member

12