Searched defs:send_algorithm (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/net/quic/test_tools/
H A Dquic_sent_packet_manager_peer.cc25 SendAlgorithmInterface* send_algorithm) {
26 sent_packet_manager->send_algorithm_.reset(send_algorithm);
23 SetSendAlgorithm( QuicSentPacketManager* sent_packet_manager, SendAlgorithmInterface* send_algorithm) argument
H A Dquic_connection_peer.cc36 SendAlgorithmInterface* send_algorithm) {
37 connection->sent_packet_manager_.send_algorithm_.reset(send_algorithm);
34 SetSendAlgorithm( QuicConnection* connection, SendAlgorithmInterface* send_algorithm) argument
/external/chromium_org/net/quic/congestion_control/
H A Dsend_algorithm_simulator.cc27 SendAlgorithmSimulator::Sender::Sender(SendAlgorithmInterface* send_algorithm, argument
29 : send_algorithm(send_algorithm),
127 it->sender->send_algorithm->TimeUntilSend(
295 sender->send_algorithm->OnCongestionEvent(
332 sender->send_algorithm->OnPacketSent(
H A Dsend_algorithm_simulator.h30 Sender(SendAlgorithmInterface* send_algorithm, RttStats* rtt_stats);
33 QuicByteCount cwnd = send_algorithm->GetCongestionWindow();
50 send_algorithm->GetCongestionWindow(),
54 SendAlgorithmInterface* send_algorithm; member in struct:net::SendAlgorithmSimulator::Sender
116 // |rtt_stats| should be the same RttStats used by the |send_algorithm|.
/external/chromium_org/net/quic/
H A Dquic_session_test.cc387 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; local
388 QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm);
398 EXPECT_CALL(*send_algorithm, TimeUntilSend(_, _, _)).WillRepeatedly(
400 EXPECT_CALL(*send_algorithm, GetCongestionWindow())
419 EXPECT_CALL(*send_algorithm, OnPacketSent(_, _, _, _, _)).Times(1);
428 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; local
429 QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm);
440 EXPECT_CALL(*send_algorithm, TimeUntilSend(_, _, _)).WillOnce(Return(
443 EXPECT_CALL(*send_algorithm, TimeUntilSend(_, _, _)).WillOnce(Return(
446 EXPECT_CALL(*send_algorithm, TimeUntilSen
[all...]
H A Dquic_http_stream_test.cc72 void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm) { argument
73 QuicConnectionPeer::SetSendAlgorithm(this, send_algorithm);
H A Dquic_connection_test.cc439 void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm) { argument
440 QuicConnectionPeer::SetSendAlgorithm(this, send_algorithm);

Completed in 161 milliseconds