Home
last modified time | relevance | path

Searched refs:loss_algorithm_ (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/core/congestion_control/
H A Duber_loss_algorithm_test.cc80 LossDetectionInterface::DetectionStats stats = loss_algorithm_.DetectLosses( in VerifyLosses()
97 UberLossAlgorithm loss_algorithm_; member in quic::test::__anona664f70b0111::UberLossAlgorithmTest
118 EXPECT_EQ(QuicTime::Zero(), loss_algorithm_.GetLossTimeout()); in TEST_F()
135 loss_algorithm_.GetLossTimeout()); in TEST_F()
143 loss_algorithm_.GetLossTimeout()); in TEST_F()
172 loss_algorithm_.GetLossTimeout()); in TEST_F()
237 const int old_reordering_shift = loss_algorithm_.GetPacketReorderingShift(); in TEST_F()
239 loss_algorithm_.GetPacketReorderingThreshold(); in TEST_F()
241 loss_algorithm_.OnUserAgentIdKnown(); in TEST_F()
249 loss_algorithm_.SetLossDetectionTuner( in TEST_F()
[all …]
H A Dgeneral_loss_algorithm_test.cc30 loss_algorithm_.Initialize(HANDSHAKE_DATA, nullptr); in GeneralLossAlgorithmTest()
76 LossDetectionInterface::DetectionStats stats = loss_algorithm_.DetectLosses( in VerifyLosses()
95 GeneralLossAlgorithm loss_algorithm_; member in quic::test::__anonb7a1c09b0111::GeneralLossAlgorithmTest
124 EXPECT_EQ(QuicTime::Zero(), loss_algorithm_.GetLossTimeout()); in TEST_F()
147 EXPECT_EQ(QuicTime::Zero(), loss_algorithm_.GetLossTimeout()); in TEST_F()
164 loss_algorithm_.GetLossTimeout()); in TEST_F()
181 loss_algorithm_.GetLossTimeout()); in TEST_F()
190 EXPECT_EQ(QuicTime::Zero(), loss_algorithm_.GetLossTimeout()); in TEST_F()
215 loss_algorithm_.GetLossTimeout()); in TEST_F()
220 loss_algorithm_.GetLossTimeout()); in TEST_F()
[all …]
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/core/
H A Dquic_sent_packet_manager.cc77 loss_algorithm_(&uber_loss_algorithm_), in QuicSentPacketManager()
211 loss_algorithm_->SetFromConfig(config, perspective); in SetFromConfig()
304 loss_algorithm_->OnConfigNegotiated(); in OnConfigNegotiated()
308 loss_algorithm_->OnConnectionClosed(); in OnConnectionClosed()
607 loss_algorithm_->SpuriousLossDetected(unacked_packets_, rtt_stats_, in MarkPacketHandled()
914 if (loss_algorithm_->GetLossTimeout() != QuicTime::Zero()) { in GetRetransmissionMode()
927 loss_algorithm_->DetectLosses(unacked_packets_, time, rtt_stats_, in InvokeLossDetection()
989 loss_algorithm_->OnMinRttAvailable(); in MaybeUpdateRTT()
1026 return loss_algorithm_->GetLossTimeout(); in GetRetransmissionTime()
H A Dquic_sent_packet_manager.h475 void OnUserAgentIdKnown() { loss_algorithm_->OnUserAgentIdKnown(); } in OnUserAgentIdKnown()
619 LossDetectionInterface* loss_algorithm_; variable
H A Dquic_connection_test.cc611 loss_algorithm_(new MockLossAlgorithm()), in QuicConnectionTest()
671 connection_.SetLossAlgorithm(loss_algorithm_.get()); in QuicConnectionTest()
709 EXPECT_CALL(*loss_algorithm_, GetLossTimeout()) in QuicConnectionTest()
711 EXPECT_CALL(*loss_algorithm_, DetectLosses(_, _, _, _, _, _)) in QuicConnectionTest()
1502 EXPECT_CALL(*loss_algorithm_, DetectLosses(_, _, _, _, _, _)); in ServerPreferredAddressInit()
1553 std::unique_ptr<MockLossAlgorithm> loss_algorithm_; member in quic::test::__anon7d1f00100111::QuicConnectionTest
3122 EXPECT_CALL(*loss_algorithm_, DetectLosses(_, _, _, _, _, _)); in TEST_P()
3489 EXPECT_CALL(*loss_algorithm_, DetectLosses(_, _, _, _, _, _)) in TEST_P()
3503 EXPECT_CALL(*loss_algorithm_, DetectLosses(_, _, _, _, _, _)); in TEST_P()
3518 EXPECT_CALL(*loss_algorithm_, DetectLosses(_, _, _, _, _, _)) in TEST_P()
[all …]
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/test_tools/
H A Dquic_sent_packet_manager_peer.cc41 return sent_packet_manager->loss_algorithm_; in GetLossAlgorithm()
48 sent_packet_manager->loss_algorithm_ = loss_detector; in SetLossAlgorithm()
H A Dquic_connection_peer.cc29 GetSentPacketManager(connection)->loss_algorithm_ = loss_algorithm; in SetLossAlgorithm()