HomeSort by relevance Sort by last modified time
    Searched defs:send_algorithm_ (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/net/quic/
quic_sent_packet_manager.h 359 scoped_ptr<SendAlgorithmInterface> send_algorithm_; member in class:net::QuicSentPacketManager
quic_sent_packet_manager_test.cc 48 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_, GetCongestionWindow()
279 MockSendAlgorithm* send_algorithm_; member in class:net::test::__anon14109::QuicSentPacketManagerTest
    [all...]
quic_http_stream_test.cc 203 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
quic_connection_test.cc 622 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_, InSlowStart()).Times(AnyNumber())
1005 MockSendAlgorithm* send_algorithm_; member in class:net::test::__anon14080::QuicConnectionTest
    [all...]

Completed in 553 milliseconds