/third_party/python/Lib/test/test_asyncio/ |
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 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
|
D | test_protocols.py | 23 self.assertIsNone(p.data_received(f))
|
D | test_proactor_events.py | 63 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
|
D | test_sendfile.py | 60 def data_received(self, data): member in MySendfileProto 64 super().data_received(data) 82 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 | 38 def data_received(self, data): member in MyProto
|
D | test_unix_events.py | 467 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)
|
D | test_events.py | 101 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/ |
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 | 264 def data_received(self, data): member in StreamReaderProtocol
|
D | proactor_events.py | 270 self._protocol.data_received(data)
|
D | selector_events.py | 870 self._protocol.data_received(data)
|
D | unix_events.py | 510 self._protocol.data_received(data)
|
/third_party/python/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>`
|
/third_party/gstreamer/gstplugins_bad/ext/smoothstreaming/ |
D | gstmssdemux.c | 209 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/ |
D | gstcurlhttpsrc.h | 241 gboolean data_received; member
|
D | gstcurlhttpsrc.c | 805 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/ |
D | gstadaptivedemux.h | 457 …GstFlowReturn (*data_received) (GstAdaptiveDemux * demux, GstAdaptiveDemuxStream * stream, GstBuff… member
|
/third_party/python/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
|
/third_party/node/src/ |
D | node_http2.h | 765 uint64_t data_received; member
|