/external/chromium_org/net/quic/test_tools/ |
quic_flow_controller_peer.cc | 17 QuicFlowController* flow_controller, 19 flow_controller->send_window_offset_ = offset; 24 QuicFlowController* flow_controller, 26 flow_controller->receive_window_offset_ = offset; 31 QuicFlowController* flow_controller, uint64 window_size) { 32 flow_controller->max_receive_window_ = window_size; 37 QuicFlowController* flow_controller) { 38 return flow_controller->send_window_offset_; 43 QuicFlowController* flow_controller) { 44 return flow_controller->SendWindowSize() [all...] |
quic_flow_controller_peer.h | 18 static void SetSendWindowOffset(QuicFlowController* flow_controller, 21 static void SetReceiveWindowOffset(QuicFlowController* flow_controller, 24 static void SetMaxReceiveWindow(QuicFlowController* flow_controller, 27 static uint64 SendWindowOffset(QuicFlowController* flow_controller); 29 static uint64 SendWindowSize(QuicFlowController* flow_controller); 31 static uint64 ReceiveWindowOffset(QuicFlowController* flow_controller); 33 static uint64 ReceiveWindowSize(QuicFlowController* flow_controller);
|
/external/chromium_org/net/quic/ |
quic_data_stream_test.cc | 292 QuicFlowControllerPeer::SetSendWindowOffset(stream_->flow_controller(), 295 stream_->flow_controller())); 310 QuicFlowControllerPeer::SendWindowSize(stream_->flow_controller())); 334 QuicFlowControllerPeer::SetReceiveWindowOffset(stream_->flow_controller(), 336 QuicFlowControllerPeer::SetMaxReceiveWindow(stream_->flow_controller(), 339 stream_->flow_controller())); 352 stream_->flow_controller())); 362 QuicFlowControllerPeer::ReceiveWindowSize(stream_->flow_controller())); 377 QuicFlowControllerPeer::SetReceiveWindowOffset(stream_->flow_controller(), 379 QuicFlowControllerPeer::SetMaxReceiveWindow(stream_->flow_controller(), [all...] |
quic_session_test.cc | 537 QuicFlowControllerPeer::SetSendWindowOffset(session_.flow_controller(), 0); 538 EXPECT_TRUE(session_.flow_controller()->IsBlocked()); 648 EXPECT_FALSE(stream2->flow_controller()->IsBlocked()); 650 EXPECT_TRUE(stream2->flow_controller()->IsBlocked()); 661 EXPECT_FALSE(stream2->flow_controller()->IsBlocked()); 672 EXPECT_FALSE(crypto_stream->flow_controller()->IsBlocked()); 675 EXPECT_FALSE(headers_stream->flow_controller()->IsBlocked()); 678 while (!crypto_stream->flow_controller()->IsBlocked() && i < 1000) { 685 EXPECT_TRUE(crypto_stream->flow_controller()->IsBlocked()); 686 EXPECT_FALSE(headers_stream->flow_controller()->IsBlocked()) [all...] |
quic_crypto_stream_test.cc | 107 EXPECT_FALSE(stream_.flow_controller()->IsEnabled()); 109 EXPECT_TRUE(stream_.flow_controller()->IsEnabled());
|
reliable_quic_stream_test.cc | 407 QuicFlowControllerPeer::SendWindowOffset(stream_->flow_controller())); 414 QuicFlowControllerPeer::SendWindowOffset(stream_->flow_controller())); 426 QuicFlowControllerPeer::SendWindowOffset(stream_->flow_controller())); 449 EXPECT_FALSE(stream_->flow_controller()->IsBlocked()); 472 stream_->flow_controller()->UpdateSendWindowOffset(kDataSize + 1); 473 session_->flow_controller()->UpdateSendWindowOffset(kDataSize + 1); 525 stream_->flow_controller()->UpdateSendWindowOffset(kDataSize + 1); 526 session_->flow_controller()->UpdateSendWindowOffset(kDataSize + 1); 640 stream_->flow_controller()));
|
quic_session.cc | 339 if (stream != NULL && !stream->flow_controller()->IsBlocked()) { 428 stream->flow_controller()->IsEnabled()) { 430 stream->flow_controller()->highest_received_byte_offset(); 774 GetCryptoStream()->flow_controller()->Disable(); 775 headers_stream_->flow_controller()->Disable(); 780 it->second->flow_controller()->Disable();
|
reliable_quic_stream.h | 102 QuicFlowController* flow_controller() { return &flow_controller_; } function in class:net::ReliableQuicStream
|
quic_session.h | 207 QuicFlowController* flow_controller() { return flow_controller_.get(); } function in class:net::QuicSession
|
quic_headers_stream_test.cc | 330 EXPECT_FALSE(headers_stream_->flow_controller()->IsEnabled()); 332 EXPECT_TRUE(headers_stream_->flow_controller()->IsEnabled());
|
reliable_quic_stream.cc | 162 connection_flow_controller_(session_->flow_controller()),
|
quic_client_session.cc | 454 DCHECK(flow_controller());
|
/external/chromium_org/net/tools/quic/ |
quic_client_session.cc | 67 DCHECK(flow_controller());
|
end_to_end_test.cc | 801 QuicFlowControllerPeer::SetSendWindowOffset(stream->flow_controller(), 0); 802 QuicFlowControllerPeer::SetSendWindowOffset(session->flow_controller(), 0); 803 EXPECT_TRUE(stream->flow_controller()->IsBlocked()); 804 EXPECT_TRUE(session->flow_controller()->IsBlocked()); [all...] |