OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bytes_to_consume
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/net/quic/
iovector.h
123
size_t
bytes_to_consume
= length;
126
for (; iter < end &&
bytes_to_consume
>= iter->iov_len; ++iter) {
127
bytes_to_consume
-= iter->iov_len;
130
if (iovec_.size() > 0 &&
bytes_to_consume
!= 0) {
132
static_cast<char*>(iovec_[0].iov_base) +
bytes_to_consume
;
133
iovec_[0].iov_len -=
bytes_to_consume
;
136
if (iovec_.size() == 0 &&
bytes_to_consume
> 0) {
137
LOG(DFATAL) << "Attempting to consume " <<
bytes_to_consume
140
// At this point
bytes_to_consume
is the number of wanted bytes left over
142
return length -
bytes_to_consume
;
[
all
...]
reliable_quic_stream.cc
471
uint64
bytes_to_consume
= flow_controller_.highest_received_byte_offset() -
local
473
AddBytesConsumed(
bytes_to_consume
);
Completed in 39 milliseconds