Searched refs:flow_controller_ (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/net/quic/
H A Dquic_flow_controller_test.cc33 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_
[all...]
H A Dreliable_quic_stream.cc157 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_
[all...]
H A Dreliable_quic_stream.h102 QuicFlowController* flow_controller() { return &flow_controller_; }
171 flow_controller_.Disable();
242 QuicFlowController flow_controller_; member in class:net::ReliableQuicStream
H A Dquic_session.cc114 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_
[all...]
H A Dquic_session.h207 QuicFlowController* flow_controller() { return flow_controller_.get(); }
324 scoped_ptr<QuicFlowController> flow_controller_; member in class:net::QuicSession

Completed in 1320 milliseconds