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

  /external/chromium_org/net/quic/
iovector.h 124 size_t bytes_to_consume = length;
127 for (; iter < end && bytes_to_consume >= iter->iov_len; ++iter) {
128 bytes_to_consume -= iter->iov_len;
131 if (iovec_.size() > 0 && bytes_to_consume != 0) {
133 static_cast<char*>(iovec_[0].iov_base) + bytes_to_consume;
134 iovec_[0].iov_len -= bytes_to_consume;
137 if (iovec_.size() == 0 && bytes_to_consume > 0) {
138 LOG(DFATAL) << "Attempting to consume " << bytes_to_consume
141 // At this point bytes_to_consume is the number of wanted bytes left over
143 return length - bytes_to_consume;
    [all...]
quic_spdy_decompressor.cc 115 size_t bytes_to_consume = local
118 if (bytes_to_consume > 0) {
120 current_header_id_, data.data(), bytes_to_consume)) {
124 compressed_bytes_consumed_ += bytes_to_consume;
125 bytes_consumed += bytes_to_consume;

Completed in 205 milliseconds