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

/external/chromium_org/net/quic/
H A Dquic_connection_test.cc606 send_algorithm_(new StrictMock<MockSendAlgorithm>),
617 connection_.SetSendAlgorithm(send_algorithm_);
623 *send_algorithm_, TimeUntilSend(_, _, _)).WillRepeatedly(Return(
627 EXPECT_CALL(*send_algorithm_, OnPacketSent(_, _, _, _, _))
629 EXPECT_CALL(*send_algorithm_, RetransmissionDelay()).WillRepeatedly(
631 EXPECT_CALL(*send_algorithm_, GetCongestionWindow()).WillRepeatedly(
633 ON_CALL(*send_algorithm_, OnPacketSent(_, _, _, _, _))
792 EXPECT_CALL(*send_algorithm_, OnPacketSent(_, _, _, _, _))
799 EXPECT_CALL(*send_algorithm_, OnPacketSent(_, _, _, _, _))
805 EXPECT_CALL(*send_algorithm_, OnPacketSen
959 MockSendAlgorithm* send_algorithm_; member in class:net::test::__anon8860::QuicConnectionTest
[all...]
H A Dquic_sent_packet_manager.cc66 send_algorithm_(
90 send_algorithm_.reset(
100 send_algorithm_->SetFromConfig(config, is_server_);
176 send_algorithm_->OnCongestionEvent(
457 send_algorithm_->OnPacketSent(sent_time,
568 send_algorithm_->OnRetransmissionTimeout(packets_retransmitted);
594 send_algorithm_->OnIncomingQuicCongestionFeedbackFrame(
658 return send_algorithm_->TimeUntilSend(
736 QuicTime::Delta retransmission_delay = send_algorithm_->RetransmissionDelay();
737 // TODO(rch): This code should move to |send_algorithm_|
[all...]
H A Dquic_sent_packet_manager_test.cc46 send_algorithm_(new StrictMock<MockSendAlgorithm>) {
47 QuicSentPacketManagerPeer::SetSendAlgorithm(&manager_, send_algorithm_);
89 EXPECT_CALL(*send_algorithm_, OnCongestionEvent(
94 EXPECT_CALL(*send_algorithm_,
101 EXPECT_CALL(*send_algorithm_, OnCongestionEvent(
120 EXPECT_CALL(*send_algorithm_,
149 EXPECT_CALL(*send_algorithm_,
184 EXPECT_CALL(*send_algorithm_,
195 EXPECT_CALL(*send_algorithm_,
210 EXPECT_CALL(*send_algorithm_,
254 MockSendAlgorithm* send_algorithm_; member in class:net::test::__anon8887::QuicSentPacketManagerTest
[all...]
H A Dquic_http_stream_test.cc182 send_algorithm_ = new MockSendAlgorithm();
186 EXPECT_CALL(*send_algorithm_,
188 EXPECT_CALL(*send_algorithm_, RetransmissionDelay()).WillRepeatedly(
190 EXPECT_CALL(*send_algorithm_, GetCongestionWindow()).WillRepeatedly(
192 EXPECT_CALL(*send_algorithm_, TimeUntilSend(_, _, _)).
194 EXPECT_CALL(*send_algorithm_, BandwidthEstimate()).WillRepeatedly(
196 EXPECT_CALL(*send_algorithm_, SetFromConfig(_, _)).Times(AnyNumber());
204 connection_->SetSendAlgorithm(send_algorithm_);
286 MockSendAlgorithm* send_algorithm_; member in class:net::test::QuicHttpStreamTest
H A Dquic_sent_packet_manager.h290 scoped_ptr<SendAlgorithmInterface> send_algorithm_; member in class:net::QuicSentPacketManager
/external/chromium_org/net/quic/congestion_control/
H A Dsend_algorithm_simulator.cc31 : send_algorithm_(send_algorithm),
65 << send_algorithm_->GetCongestionWindow();
67 QuicTime::Delta send_delta = send_algorithm_->TimeUntilSend(
209 send_algorithm_->OnCongestionEvent(
221 send_algorithm_->OnPacketSent(
254 QuicByteCount cwnd = send_algorithm_->GetCongestionWindow();
H A Dsend_algorithm_simulator.h98 SendAlgorithmInterface* send_algorithm_; member in class:net::SendAlgorithmSimulator
/external/chromium_org/net/quic/test_tools/
H A Dquic_sent_packet_manager_peer.cc26 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 1631 milliseconds