Searched refs:send_algorithm_ (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/net/quic/
H A Dquic_sent_packet_manager_test.cc31 send_algorithm_(new StrictMock<MockSendAlgorithm>) {
32 QuicSentPacketManagerPeer::SetSendAlgorithm(&manager_, send_algorithm_);
116 EXPECT_CALL(*send_algorithm_, OnPacketSent(_, sequence_number, _, _, _))
129 EXPECT_CALL(*send_algorithm_,
145 MockSendAlgorithm* send_algorithm_; member in class:net::test::__anon9630::QuicSentPacketManagerTest
231 EXPECT_CALL(*send_algorithm_, RetransmissionDelay())
256 EXPECT_CALL(*send_algorithm_, RetransmissionDelay())
475 EXPECT_CALL(*send_algorithm_, OnPacketSent(_, 1, _, _, _))
482 EXPECT_CALL(*send_algorithm_, OnPacketSent(_, 2, _, _, _))
501 EXPECT_CALL(*send_algorithm_, OnPacketSen
[all...]
H A Dquic_connection_test.cc510 send_algorithm_(new StrictMock<MockSendAlgorithm>),
518 connection_.SetSendAlgorithm(send_algorithm_);
523 *send_algorithm_, TimeUntilSend(_, _, _, _)).WillRepeatedly(Return(
527 EXPECT_CALL(*send_algorithm_, OnPacketSent(_, _, _, _, _))
529 EXPECT_CALL(*send_algorithm_, RetransmissionDelay()).WillRepeatedly(
531 EXPECT_CALL(*send_algorithm_, BandwidthEstimate()).WillRepeatedly(Return(
533 EXPECT_CALL(*send_algorithm_, SmoothedRtt()).WillRepeatedly(Return(
535 ON_CALL(*send_algorithm_, OnPacketSent(_, _, _, _, _))
696 EXPECT_CALL(*send_algorithm_, OnPacketSent(_, _, _, _, _))
703 EXPECT_CALL(*send_algorithm_, OnPacketSen
789 MockSendAlgorithm* send_algorithm_; member in class:net::test::__anon9604::QuicConnectionTest
[all...]
H A Dquic_sent_packet_manager.cc69 send_algorithm_(SendAlgorithmInterface::Create(clock, type)),
100 send_algorithm_->SetFromConfig(config, is_server_);
104 send_algorithm_->SetMaxPacketSize(max_packet_size);
478 if (!send_algorithm_->OnPacketSent(sent_time, sequence_number, bytes,
506 send_algorithm_->OnPacketAbandoned(
532 send_algorithm_->OnRetransmissionTimeout();
541 send_algorithm_->OnPacketAbandoned(
550 send_algorithm_->OnIncomingQuicCongestionFeedbackFrame(
563 // * Send each ACK in the list to send_algorithm_.
577 send_algorithm_
[all...]
H A Dquic_http_stream_test.cc188 send_algorithm_ = new MockSendAlgorithm();
192 EXPECT_CALL(*send_algorithm_,
194 EXPECT_CALL(*send_algorithm_, RetransmissionDelay()).WillRepeatedly(
196 EXPECT_CALL(*send_algorithm_, TimeUntilSend(_, _, _, _)).
198 EXPECT_CALL(*send_algorithm_, SmoothedRtt()).WillRepeatedly(
200 EXPECT_CALL(*send_algorithm_, BandwidthEstimate()).WillRepeatedly(
202 EXPECT_CALL(*send_algorithm_, SetFromConfig(_, _)).Times(AnyNumber());
209 connection_->SetSendAlgorithm(send_algorithm_);
304 MockSendAlgorithm* send_algorithm_; member in class:net::test::QuicHttpStreamTest
740 EXPECT_CALL(*send_algorithm_, TimeUntilSen
[all...]
H A Dquic_sent_packet_manager.h290 scoped_ptr<SendAlgorithmInterface> send_algorithm_; member in class:net::QuicSentPacketManager
/external/chromium_org/net/quic/test_tools/
H A Dquic_sent_packet_manager_peer.cc19 sent_packet_manager->send_algorithm_.reset(send_algorithm);
H A Dquic_connection_peer.cc37 connection->sent_packet_manager_.send_algorithm_.reset(send_algorithm);

Completed in 130 milliseconds