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

/external/chromium_org/net/quic/
H A Dquic_sent_packet_manager.cc76 send_algorithm_(SendAlgorithmInterface::Create(clock,
112 send_algorithm_.reset(
117 send_algorithm_.reset(
137 send_algorithm_->SetFromConfig(config, is_server_);
207 send_algorithm_->InRecovery(),
208 send_algorithm_->InSlowStart(),
209 send_algorithm_->BandwidthEstimate(),
252 send_algorithm_->OnCongestionEvent(rtt_updated, bytes_in_flight,
381 send_algorithm_->RevertRetransmissionTimeout();
530 send_algorithm_
[all...]
H A Dquic_sent_packet_manager_test.cc48 send_algorithm_(new StrictMock<MockSendAlgorithm>),
50 QuicSentPacketManagerPeer::SetSendAlgorithm(&manager_, send_algorithm_);
57 EXPECT_CALL(*send_algorithm_, HasReliableBandwidthEstimate())
59 EXPECT_CALL(*send_algorithm_, BandwidthEstimate())
62 EXPECT_CALL(*send_algorithm_, InSlowStart()).Times(AnyNumber());
63 EXPECT_CALL(*send_algorithm_, InRecovery()).Times(AnyNumber());
101 EXPECT_CALL(*send_algorithm_, OnCongestionEvent(
103 EXPECT_CALL(*send_algorithm_, GetCongestionWindow())
109 EXPECT_CALL(*send_algorithm_,
111 EXPECT_CALL(*send_algorithm_, GetCongestionWindo
279 MockSendAlgorithm* send_algorithm_; member in class:net::test::__anon9484::QuicSentPacketManagerTest
[all...]
H A Dquic_connection_test.cc622 send_algorithm_(new StrictMock<MockSendAlgorithm>),
634 connection_.SetSendAlgorithm(send_algorithm_);
640 *send_algorithm_, TimeUntilSend(_, _, _)).WillRepeatedly(Return(
644 EXPECT_CALL(*send_algorithm_, OnPacketSent(_, _, _, _, _))
646 EXPECT_CALL(*send_algorithm_, RetransmissionDelay()).WillRepeatedly(
648 EXPECT_CALL(*send_algorithm_, GetCongestionWindow()).WillRepeatedly(
650 ON_CALL(*send_algorithm_, OnPacketSent(_, _, _, _, _))
652 EXPECT_CALL(*send_algorithm_, HasReliableBandwidthEstimate())
654 EXPECT_CALL(*send_algorithm_, BandwidthEstimate())
657 EXPECT_CALL(*send_algorithm_, InSlowStar
1005 MockSendAlgorithm* send_algorithm_; member in class:net::test::__anon9455::QuicConnectionTest
[all...]
H A Dquic_http_stream_test.cc203 send_algorithm_ = new MockSendAlgorithm();
207 EXPECT_CALL(*send_algorithm_,
209 EXPECT_CALL(*send_algorithm_, RetransmissionDelay()).WillRepeatedly(
211 EXPECT_CALL(*send_algorithm_, GetCongestionWindow()).WillRepeatedly(
213 EXPECT_CALL(*send_algorithm_, TimeUntilSend(_, _, _)).
215 EXPECT_CALL(*send_algorithm_, BandwidthEstimate()).WillRepeatedly(
217 EXPECT_CALL(*send_algorithm_, SetFromConfig(_, _)).Times(AnyNumber());
225 connection_->SetSendAlgorithm(send_algorithm_);
308 MockSendAlgorithm* send_algorithm_; member in class:net::test::QuicHttpStreamTest
H A Dquic_sent_packet_manager.h359 scoped_ptr<SendAlgorithmInterface> send_algorithm_; member in class:net::QuicSentPacketManager
/external/chromium_org/net/quic/test_tools/
H A Dquic_sent_packet_manager_peer.cc26 sent_packet_manager->send_algorithm_.reset(send_algorithm);
39 return sent_packet_manager.send_algorithm_.get();
H A Dquic_connection_peer.cc37 connection->sent_packet_manager_.send_algorithm_.reset(send_algorithm);

Completed in 118 milliseconds