Home
last modified time | relevance | path

Searched refs:NoReadReason (Results 1 – 8 of 8) sorted by relevance

/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/
H A DQuicConstants.cpp137 folly::StringPiece readNoReadReasonString(NoReadReason reason) { in readNoReadReasonString()
139 case NoReadReason::READ_OK: in readNoReadReasonString()
141 case NoReadReason::TRUNCATED: in readNoReadReasonString()
143 case NoReadReason::EMPTY_DATA: in readNoReadReasonString()
145 case NoReadReason::RETRIABLE_ERROR: in readNoReadReasonString()
147 case NoReadReason::NONRETRIABLE_ERROR: in readNoReadReasonString()
149 case NoReadReason::STALE_DATA: in readNoReadReasonString()
H A DQuicConstants.h587 enum class NoReadReason { enum
598 folly::StringPiece readNoReadReasonString(NoReadReason reason);
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/api/
H A DLoopDetectorCallback.h27 NoReadReason noReadReason) = 0;
H A DQuicTransportBase.cpp1729 conn_->readDebugState.noReadReason = NoReadReason::READ_OK; in onNetworkData()
1733 conn_->readDebugState.noReadReason = NoReadReason::STALE_DATA; in onNetworkData()
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/client/
H A DQuicClientTransport.cpp1096 conn_->readDebugState.noReadReason = NoReadReason::TRUNCATED; in onDataAvailable()
1213 conn_->readDebugState.noReadReason = NoReadReason::RETRIABLE_ERROR; in recvMsg()
1221 conn_->readDebugState.noReadReason = NoReadReason::NONRETRIABLE_ERROR; in recvMsg()
1351 conn_->readDebugState.noReadReason = NoReadReason::RETRIABLE_ERROR; in recvMmsg()
1359 conn_->readDebugState.noReadReason = NoReadReason::NONRETRIABLE_ERROR; in recvMmsg()
1465 if (conn_->readDebugState.noReadReason == NoReadReason::READ_OK) { in onNotifyDataAvailable()
1466 conn_->readDebugState.noReadReason = NoReadReason::EMPTY_DATA; in onNotifyDataAvailable()
1468 if (conn_->readDebugState.noReadReason != NoReadReason::READ_OK) { in onNotifyDataAvailable()
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/state/
H A DStateData.h777 NoReadReason noReadReason{NoReadReason::READ_OK};
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/api/test/
H A DMocks.h324 MOCK_METHOD2(onSuspiciousReadLoops, void(uint64_t, NoReadReason));
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/fizz/client/test/
H A DQuicClientTransportTest.cpp3065 conn.readDebugState.noReadReason = NoReadReason::RETRIABLE_ERROR; in TEST_F()
3078 EXPECT_EQ(NoReadReason::READ_OK, conn.readDebugState.noReadReason); in TEST_F()
3089 EXPECT_EQ(NoReadReason::STALE_DATA, conn.readDebugState.noReadReason); in TEST_F()
3100 onSuspiciousReadLoops(1, NoReadReason::TRUNCATED)); in TEST_F()
3114 onSuspiciousReadLoops(1, NoReadReason::RETRIABLE_ERROR)); in TEST_F()
3128 onSuspiciousReadLoops(1, NoReadReason::NONRETRIABLE_ERROR)); in TEST_F()
3135 onSuspiciousReadLoops(2, NoReadReason::NONRETRIABLE_ERROR)); in TEST_F()
3149 onSuspiciousReadLoops(1, NoReadReason::NONRETRIABLE_ERROR)); in TEST_F()
3195 onSuspiciousReadLoops(1, NoReadReason::RETRIABLE_ERROR)); in TEST_F()
3206 onSuspiciousReadLoops(2, NoReadReason::NONRETRIABLE_ERROR)); in TEST_F()