Home
last modified time | relevance | path

Searched refs:loss_algorithm (Results 1 – 4 of 4) sorted by relevance

/external/cronet/net/third_party/quiche/src/quiche/quic/core/
Dquic_sent_packet_manager_test.cc614 auto loss_algorithm = std::make_unique<MockLossAlgorithm>(); in TEST_F() local
615 QuicSentPacketManagerPeer::SetLossAlgorithm(&manager_, loss_algorithm.get()); in TEST_F()
624 EXPECT_CALL(*loss_algorithm, DetectLosses(_, _, _, _, _, _)); in TEST_F()
638 EXPECT_CALL(*loss_algorithm, DetectLosses(_, _, _, _, _, _)); in TEST_F()
653 EXPECT_CALL(*loss_algorithm, DetectLosses(_, _, _, _, _, _)); in TEST_F()
654 EXPECT_CALL(*loss_algorithm, in TEST_F()
670 EXPECT_CALL(*loss_algorithm, DetectLosses(_, _, _, _, _, _)); in TEST_F()
1064 auto loss_algorithm = std::make_unique<MockLossAlgorithm>(); in TEST_F() local
1065 QuicSentPacketManagerPeer::SetLossAlgorithm(&manager_, loss_algorithm.get()); in TEST_F()
1067 EXPECT_CALL(*loss_algorithm, GetLossTimeout()) in TEST_F()
[all …]
Dquic_connection_test.cc238 void SetLossAlgorithm(LossDetectionInterface* loss_algorithm) { in SetLossAlgorithm() argument
239 QuicConnectionPeer::SetLossAlgorithm(this, loss_algorithm); in SetLossAlgorithm()
/external/cronet/net/third_party/quiche/src/quiche/quic/test_tools/
Dquic_connection_peer.cc28 QuicConnection* connection, LossDetectionInterface* loss_algorithm) { in SetLossAlgorithm() argument
29 GetSentPacketManager(connection)->loss_algorithm_ = loss_algorithm; in SetLossAlgorithm()
Dquic_connection_peer.h43 LossDetectionInterface* loss_algorithm);