OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:flow_controller_
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/net/quic/
quic_flow_controller_test.cc
33
flow_controller_
.reset(new QuicFlowController(
43
scoped_ptr<QuicFlowController>
flow_controller_
;
member in class:net::test::QuicFlowControllerTest
50
EXPECT_TRUE(
flow_controller_
->IsEnabled());
51
EXPECT_FALSE(
flow_controller_
->IsBlocked());
52
EXPECT_FALSE(
flow_controller_
->FlowControlViolation());
53
EXPECT_EQ(send_window_,
flow_controller_
->SendWindowSize());
56
flow_controller_
->AddBytesSent(send_window_ / 2);
57
EXPECT_FALSE(
flow_controller_
->IsBlocked());
58
EXPECT_EQ(send_window_ / 2,
flow_controller_
->SendWindowSize());
61
flow_controller_
->AddBytesSent(send_window_ / 2)
[
all
...]
reliable_quic_stream.cc
157
flow_controller_
(
193
if (
flow_controller_
.FlowControlViolation() ||
336
flow_controller_
.MaybeSendBlocked();
345
!
flow_controller_
.IsBlocked()) {
366
if (
flow_controller_
.IsEnabled()) {
368
uint64 send_window =
flow_controller_
.SendWindowSize();
471
uint64 bytes_to_consume =
flow_controller_
.highest_received_byte_offset() -
472
flow_controller_
.bytes_consumed();
478
if (!
flow_controller_
.IsEnabled()) {
482
if (
flow_controller_
.UpdateSendWindowOffset(frame.byte_offset))
[
all
...]
reliable_quic_stream.h
102
QuicFlowController* flow_controller() { return &
flow_controller_
; }
171
flow_controller_
.Disable();
242
QuicFlowController
flow_controller_
;
member in class:net::ReliableQuicStream
quic_session.cc
114
flow_controller_
.reset(new QuicFlowController(
119
flow_controller_
.reset(new QuicFlowController(
263
if (
flow_controller_
->UpdateSendWindowOffset(frames[i].byte_offset)) {
305
if (
flow_controller_
->IsBlocked()) {
353
(!
flow_controller_
->IsBlocked() &&
448
if (
flow_controller_
->UpdateHighestReceivedOffset(
449
flow_controller_
->highest_received_byte_offset() + offset_diff)) {
451
if (
flow_controller_
->FlowControlViolation()) {
458
flow_controller_
->AddBytesConsumed(offset_diff);
547
flow_controller_
->UpdateSendWindowOffset(new_window)
[
all
...]
quic_session.h
207
QuicFlowController* flow_controller() { return
flow_controller_
.get(); }
324
scoped_ptr<QuicFlowController>
flow_controller_
;
member in class:net::QuicSession
Completed in 99 milliseconds