Home
last modified time | relevance | path

Searched refs:send_algorithm (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/net/quic/
Dquic_session_test.cc383 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; in TEST_P() local
384 QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm); in TEST_P()
394 EXPECT_CALL(*send_algorithm, TimeUntilSend(_, _, _)).WillRepeatedly( in TEST_P()
396 EXPECT_CALL(*send_algorithm, GetCongestionWindow()) in TEST_P()
415 EXPECT_CALL(*send_algorithm, OnPacketSent(_, _, _, _, _)).Times(1); in TEST_P()
424 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; in TEST_P() local
425 QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm); in TEST_P()
436 EXPECT_CALL(*send_algorithm, TimeUntilSend(_, _, _)).WillOnce(Return( in TEST_P()
439 EXPECT_CALL(*send_algorithm, TimeUntilSend(_, _, _)).WillOnce(Return( in TEST_P()
442 EXPECT_CALL(*send_algorithm, TimeUntilSend(_, _, _)).WillOnce(Return( in TEST_P()
[all …]
Dquic_http_stream_test.cc66 void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument
67 QuicConnectionPeer::SetSendAlgorithm(this, send_algorithm); in SetSendAlgorithm()
Dquic_connection_test.cc435 void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument
436 QuicConnectionPeer::SetSendAlgorithm(this, send_algorithm); in SetSendAlgorithm()
/external/chromium_org/net/quic/test_tools/
Dquic_sent_packet_manager_peer.cc25 SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument
26 sent_packet_manager->send_algorithm_.reset(send_algorithm); in SetSendAlgorithm()
Dquic_connection_peer.cc36 SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument
37 connection->sent_packet_manager_.send_algorithm_.reset(send_algorithm); in SetSendAlgorithm()
Dquic_sent_packet_manager_peer.h23 SendAlgorithmInterface* send_algorithm);
Dquic_connection_peer.h43 SendAlgorithmInterface* send_algorithm);
/external/chromium_org/net/quic/congestion_control/
Dsend_algorithm_simulator.cc26 SendAlgorithmInterface* send_algorithm, in SendAlgorithmSimulator() argument
31 : send_algorithm_(send_algorithm), in SendAlgorithmSimulator()
Dsend_algorithm_simulator.h36 SendAlgorithmSimulator(SendAlgorithmInterface* send_algorithm,