Searched refs:send_algorithm (Results 1 – 9 of 9) sorted by relevance
/external/chromium_org/net/quic/congestion_control/ |
D | send_algorithm_simulator.h | 30 Sender(SendAlgorithmInterface* send_algorithm, RttStats* rtt_stats); 33 QuicByteCount cwnd = send_algorithm->GetCongestionWindow(); in RecordStats() 50 send_algorithm->GetCongestionWindow(), in DebugString() 54 SendAlgorithmInterface* send_algorithm; member
|
D | send_algorithm_simulator.cc | 27 SendAlgorithmSimulator::Sender::Sender(SendAlgorithmInterface* send_algorithm, in Sender() argument 29 : send_algorithm(send_algorithm), in Sender() 127 it->sender->send_algorithm->TimeUntilSend( in NextSendEvent() 295 sender->send_algorithm->OnCongestionEvent( in HandlePendingAck() 332 sender->send_algorithm->OnPacketSent( in SendDataNow()
|
/external/chromium_org/net/quic/ |
D | quic_session_test.cc | 387 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; in TEST_P() local 388 QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm); in TEST_P() 398 EXPECT_CALL(*send_algorithm, TimeUntilSend(_, _, _)).WillRepeatedly( in TEST_P() 400 EXPECT_CALL(*send_algorithm, GetCongestionWindow()) in TEST_P() 419 EXPECT_CALL(*send_algorithm, OnPacketSent(_, _, _, _, _)).Times(1); in TEST_P() 428 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; in TEST_P() local 429 QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm); in TEST_P() 440 EXPECT_CALL(*send_algorithm, TimeUntilSend(_, _, _)).WillOnce(Return( in TEST_P() 443 EXPECT_CALL(*send_algorithm, TimeUntilSend(_, _, _)).WillOnce(Return( in TEST_P() 446 EXPECT_CALL(*send_algorithm, TimeUntilSend(_, _, _)).WillOnce(Return( in TEST_P() [all …]
|
D | quic_http_stream_test.cc | 72 void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument 73 QuicConnectionPeer::SetSendAlgorithm(this, send_algorithm); in SetSendAlgorithm()
|
D | quic_connection_test.cc | 439 void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument 440 QuicConnectionPeer::SetSendAlgorithm(this, send_algorithm); in SetSendAlgorithm()
|
/external/chromium_org/net/quic/test_tools/ |
D | quic_sent_packet_manager_peer.cc | 25 SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument 26 sent_packet_manager->send_algorithm_.reset(send_algorithm); in SetSendAlgorithm()
|
D | quic_connection_peer.cc | 36 SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument 37 connection->sent_packet_manager_.send_algorithm_.reset(send_algorithm); in SetSendAlgorithm()
|
D | quic_sent_packet_manager_peer.h | 23 SendAlgorithmInterface* send_algorithm);
|
D | quic_connection_peer.h | 43 SendAlgorithmInterface* send_algorithm);
|