Lines Matching refs:data
25 To receive data, wait for data_received() calls.
78 will be called 0 or more times with data (bytes) received from the
94 def data_received(self, data):
95 """Called when some data is received.
117 provided by the protocol to avoid unnecessary data copies. This
119 receive big amounts of data. Sophisticated protocols can allocate
147 """Called when the buffer was updated with the received data.
167 def datagram_received(self, data, addr):
182 def pipe_data_received(self, fd, data):
183 """Called when the subprocess writes data into stdout/stderr pipe.
186 data is bytes object.
200 def _feed_data_to_buffered_proto(proto, data):
201 data_len = len(data)
209 buf[:data_len] = data
213 buf[:buf_len] = data[:buf_len]
215 data = data[buf_len:]
216 data_len = len(data)