HomeSort by relevance Sort by last modified time
    Searched refs:data_received (Results 1 - 16 of 16) sorted by null

  /external/webrtc/webrtc/examples/peerconnection/server/
data_socket.h 88 return headers_received() && (method_ != POST || data_received());
91 bool data_received() const { function in class:DataSocket
  /external/python/cpython3/Lib/asyncio/
protocols.py 23 To receive data, wait for data_received() calls.
75 called with a suitable transport object. Then data_received()
85 * DR: data_received()
90 def data_received(self, data): member in class:Protocol
sslproto.py 334 No data will be passed to the protocol's data_received()
343 data_received() method.
516 def data_received(self, data): member in class:SSLProtocol
541 self._app_protocol.data_received(chunk)
base_subprocess.py 283 def data_received(self, data): member in class:ReadSubprocessPipeProto
streams.py 256 def data_received(self, data): member in class:StreamReaderProtocol
proactor_events.py 244 self._protocol.data_received(data)
selector_events.py 813 self._protocol.data_received(data)
816 exc, 'Fatal error: protocol.data_received() call failed.')
    [all...]
unix_events.py 485 self._protocol.data_received(data)
    [all...]
base_events.py 228 def data_received(self, data): member in class:_SendfileFallbackProtocol
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_proactor_events.py 57 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 class:ProactorEventLoopUnixSockSendfileTests.MyProto
    [all...]
test_sslproto.py 141 self.assertIsNone(ssl_proto.data_received(b'data'))
245 def data_received(self, data): member in class:BaseStartTLS.test_start_tls_client_reg_proto_1.ClientProto
325 def data_received(self, data): member in class:BaseStartTLS.test_start_tls_client_buf_proto_1.ClientProtoSecond
396 def data_received(self, data): member in class:BaseStartTLS.test_start_tls_slow_client_cancel.ClientProto
460 def data_received(self, data): member in class:BaseStartTLS.test_start_tls_server_1.ServerProto
test_windows_events.py 25 def data_received(self, data): member in class:UpperProto
test_selector_events.py     [all...]
test_events.py 93 def data_received(self, data): member in class:MyBaseProto
157 def data_received(self, data): member in class:MyReadPipeProto
793 def data_received(self, data): member in class:EventLoopTestsMixin.test_connect_accepted_socket.MyProto
794 super().data_received(data)
2160 def data_received(self, data): member in class:SockSendfileMixin.MyProto
2286 def data_received(self, data): member in class:SendfileMixin.MySendfileProto
    [all...]
test_unix_events.py 443 def data_received(self, data): member in class:SelectorEventLoopUnixSockSendfileTests.MyProto
673 self.protocol.data_received.assert_called_with(b'data')
695 self.assertFalse(self.protocol.data_received.called)
    [all...]
test_base_events.py 994 def data_received(self, data): member in class:MyProto
1896 def data_received(self, data): member in class:BaseLoopSockSendfileTests.MyProto
    [all...]

Completed in 2252 milliseconds