OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:total_bytes_consumed
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/net/quic/
quic_data_stream.cc
123
uint32
total_bytes_consumed
= 0;
local
125
total_bytes_consumed
+= StripPriorityAndHeaderId(data, data_len);
126
data +=
total_bytes_consumed
;
127
data_len -=
total_bytes_consumed
;
128
if (data_len == 0 ||
total_bytes_consumed
== 0) {
129
return
total_bytes_consumed
;
142
total_bytes_consumed
+= ProcessData(data, data_len);
144
return
total_bytes_consumed
;
157
return
total_bytes_consumed
;
166
return
total_bytes_consumed
;
[
all
...]
quic_packet_generator.cc
81
size_t
total_bytes_consumed
= 0;
local
97
id, data, offset +
total_bytes_consumed
, fin, notifier, &frame);
100
id, data, offset +
total_bytes_consumed
, fin, &frame);
110
total_bytes_consumed
+= bytes_consumed;
111
fin_consumed = fin &&
total_bytes_consumed
== data_size;
137
return QuicConsumedData(
total_bytes_consumed
, fin_consumed);
Completed in 97 milliseconds