Home
last modified time | relevance | path

Searched refs:max_buffer_capacity_bytes_ (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/core/
H A Dquic_stream_sequencer_buffer.cc44 : max_buffer_capacity_bytes_(max_capacity_bytes), in QuicStreamSequencerBuffer()
88 if (last_byte < max_buffer_capacity_bytes_) { in MaybeAddMoreBlocks()
119 if (starting_offset + size > total_bytes_read_ + max_buffer_capacity_bytes_ || in OnStreamData()
202 if (offset + bytes_avail > total_bytes_read_ + max_buffer_capacity_bytes_) { in CopyStreamData()
203 bytes_avail = total_bytes_read_ + max_buffer_capacity_bytes_ - offset; in CopyStreamData()
456 return (offset % max_buffer_capacity_bytes_) / kBlockSizeBytes; in GetBlockIndex()
461 return (offset % max_buffer_capacity_bytes_) % kBlockSizeBytes; in GetInBlockOffset()
513 size_t result = max_buffer_capacity_bytes_ % kBlockSizeBytes; in GetBlockCapacity()
H A Dquic_stream_sequencer_buffer.h215 size_t max_buffer_capacity_bytes_; variable
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/test_tools/
H A Dquic_stream_sequencer_buffer_peer.cc68 bool capacity_sane = data_span <= buffer_->max_buffer_capacity_bytes_ && in CheckBufferInvariants()
85 (buffer_->max_buffer_capacity_bytes_ <= in CheckBufferInvariants()
87 (buffer_->max_buffer_capacity_bytes_ > in CheckBufferInvariants()
128 return buffer_->max_buffer_capacity_bytes_; in max_buffer_capacity()