HomeSort by relevance Sort by last modified time
    Searched defs:flow_controller_ (Results 1 - 3 of 3) 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...]
quic_session.h 207 QuicFlowController* flow_controller() { return flow_controller_.get(); }
324 scoped_ptr<QuicFlowController> flow_controller_; member in class:net::QuicSession
reliable_quic_stream.h 102 QuicFlowController* flow_controller() { return &flow_controller_; }
171 flow_controller_.Disable();
242 QuicFlowController flow_controller_; member in class:net::ReliableQuicStream

Completed in 44 milliseconds