Lines Matching full:data
22 // id, underlying socket, and pending read/write data.
25 // IOBuffer for data read. It's a wrapper around GrowableIOBuffer, with more
26 // functions for buffer management. It moves unconsumed data to the start of
43 // Start of read data.
45 // Returns the bytes of read data.
47 // More read data was appended.
49 // Capacity for which more read data can be appended.
52 // Removes consumed data and moves unconsumed data to the start of buffer.
70 // IOBuffer of pending data to write which has a queue of pending data. Each
71 // pending data is stored in std::string. data() is the data of first
79 // Whether or not pending data exists.
82 // Appends new pending data and returns true if total size doesn't exceed
83 // the limit, |total_size_limit_|. It would change data() if new data is
84 // the first pending data.
85 bool Append(const std::string& data);
87 // Consumes data and changes data() accordingly. It cannot be more than
91 // Gets size of data to write this time. It is NOT total data size.
94 // Total size of all pending data.
97 // Limit of how much data can be pending.