Home
last modified time | relevance | path

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

/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/core/
H A Dquic_sent_packet_manager_test.cc619 auto loss_algorithm = std::make_unique<MockLossAlgorithm>(); in TEST_F() local
620 QuicSentPacketManagerPeer::SetLossAlgorithm(&manager_, loss_algorithm.get()); in TEST_F()
629 EXPECT_CALL(*loss_algorithm, DetectLosses(_, _, _, _, _, _)); in TEST_F()
643 EXPECT_CALL(*loss_algorithm, DetectLosses(_, _, _, _, _, _)); in TEST_F()
658 EXPECT_CALL(*loss_algorithm, DetectLosses(_, _, _, _, _, _)); in TEST_F()
659 EXPECT_CALL(*loss_algorithm, in TEST_F()
675 EXPECT_CALL(*loss_algorithm, DetectLosses(_, _, _, _, _, _)); in TEST_F()
1069 auto loss_algorithm = std::make_unique<MockLossAlgorithm>(); in TEST_F() local
1070 QuicSentPacketManagerPeer::SetLossAlgorithm(&manager_, loss_algorithm.get()); in TEST_F()
1072 EXPECT_CALL(*loss_algorithm, GetLossTimeout()) in TEST_F()
[all …]
H A Dquic_connection_test.cc238 void SetLossAlgorithm(LossDetectionInterface* loss_algorithm) { in SetLossAlgorithm() argument
239 QuicConnectionPeer::SetLossAlgorithm(this, loss_algorithm); in SetLossAlgorithm()
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/test_tools/
H A Dquic_connection_peer.cc28 QuicConnection* connection, LossDetectionInterface* loss_algorithm) { in SetLossAlgorithm() argument
29 GetSentPacketManager(connection)->loss_algorithm_ = loss_algorithm; in SetLossAlgorithm()
H A Dquic_connection_peer.h43 LossDetectionInterface* loss_algorithm);