Home
last modified time | relevance | path

Searched refs:lostByTimeout (Results 1 – 5 of 5) sorted by relevance

/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/api/
H A DObserver.h116 : lostByTimeout(lostbytimeout), in LostPacket()
119 bool lostByTimeout{false};
132 bool lostByTimeout, in addLostPacket()
135 lostPackets.emplace_back(lostByTimeout, lostByReorder, packet); in addLostPacket()
225 spuriousPackets.emplace_back(pkt.lostByTimeout, pkt.lostByReorder, pkt); in addSpuriousPacket()
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/loss/
H A DQuicLossFunctions.h233 bool lostByTimeout = (lossTime - pkt.metadata.time) > delayUntilLost; in detectLossPackets() local
237 if (!(lostByTimeout || lostByReorder)) { in detectLossPackets()
254 pkt.lostByTimeout = lostByTimeout; in detectLossPackets()
267 observerLossEvent->addLostPacket(lostByTimeout, lostByReorder, pkt); in detectLossPackets()
296 if (lostByTimeout) { in detectLossPackets()
304 iter->lostByTimeout = lostByTimeout; in detectLossPackets()
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/state/
H A DOutstandingPacket.h174 bool lostByTimeout{false};
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/api/test/
H A DMocks.h418 &Observer::LostPacket::lostByTimeout, testing::Eq(timeoutLoss)), in getLossPacketMatcher()
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/loss/test/
H A DQuicLossFunctionsTest.cpp39 bool lostByTimeout) { in getOutstandingPacketMatcher() argument
44 &quic::OutstandingPacket::lostByTimeout, testing::Eq(lostByTimeout)), in getOutstandingPacketMatcher()