Home
last modified time | relevance | path

Searched refs:rst_frame (Results 1 – 25 of 70) sorted by relevance

123

/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/quic/core/frames/
H A Dquic_rst_stream_frame.cc20 const QuicRstStreamFrame& rst_frame) { in operator <<() argument
21 os << "{ control_frame_id: " << rst_frame.control_frame_id in operator <<()
22 << ", stream_id: " << rst_frame.stream_id in operator <<()
23 << ", byte_offset: " << rst_frame.byte_offset in operator <<()
24 << ", error_code: " << rst_frame.error_code << " }\n"; in operator <<()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/quic/core/frames/
H A Dquic_rst_stream_frame.cc35 const QuicRstStreamFrame& rst_frame) { in operator <<() argument
36 os << "{ control_frame_id: " << rst_frame.control_frame_id in operator <<()
37 << ", stream_id: " << rst_frame.stream_id in operator <<()
38 << ", byte_offset: " << rst_frame.byte_offset in operator <<()
39 << ", error_code: " << rst_frame.error_code << " }\n"; in operator <<()
/dports/lang/spidermonkey78/firefox-78.9.0/testing/web-platform/tests/tools/third_party/h2/test/
H A Dtest_closed_streams.py302 rst_frame = frame_factory.build_rst_stream_frame(
305 c.receive_data(rst_frame.serialize())
311 rst_frame = frame_factory.build_rst_stream_frame(
315 assert c.data_to_send() == rst_frame.serialize()
319 assert c.data_to_send() == rst_frame.serialize() * 3
327 assert c.data_to_send() == rst_frame.serialize() * 3
364 rst_frame = frame_factory.build_rst_stream_frame(
372 rst_frame = frame_factory.build_rst_stream_frame(
376 assert c.data_to_send() == rst_frame.serialize()
380 assert c.data_to_send() == rst_frame.serialize() * 3
[all …]
H A Dtest_stream_reset.py49 rst_frame = frame_factory.build_rst_stream_frame(
54 assert c.data_to_send() == rst_frame.serialize()
97 rst_frame = frame_factory.build_rst_stream_frame(
101 assert c.data_to_send() == rst_frame.serialize()
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/third_party/h2/test/
H A Dtest_closed_streams.py370 rst_frame = frame_factory.build_rst_stream_frame(
373 c.receive_data(rst_frame.serialize())
379 rst_frame = frame_factory.build_rst_stream_frame(
383 assert c.data_to_send() == rst_frame.serialize()
387 assert c.data_to_send() == rst_frame.serialize() * 3
395 assert c.data_to_send() == rst_frame.serialize() * 3
419 rst_frame = frame_factory.build_rst_stream_frame(
422 c.receive_data(rst_frame.serialize())
483 rst_frame = frame_factory.build_rst_stream_frame(
491 rst_frame = frame_factory.build_rst_stream_frame(
[all …]
H A Dtest_stream_reset.py49 rst_frame = frame_factory.build_rst_stream_frame(
54 assert c.data_to_send() == rst_frame.serialize()
/dports/www/firefox/firefox-99.0/testing/web-platform/tests/tools/third_party/h2/test/
H A Dtest_closed_streams.py370 rst_frame = frame_factory.build_rst_stream_frame(
373 c.receive_data(rst_frame.serialize())
379 rst_frame = frame_factory.build_rst_stream_frame(
383 assert c.data_to_send() == rst_frame.serialize()
387 assert c.data_to_send() == rst_frame.serialize() * 3
395 assert c.data_to_send() == rst_frame.serialize() * 3
419 rst_frame = frame_factory.build_rst_stream_frame(
422 c.receive_data(rst_frame.serialize())
483 rst_frame = frame_factory.build_rst_stream_frame(
491 rst_frame = frame_factory.build_rst_stream_frame(
[all …]
H A Dtest_stream_reset.py49 rst_frame = frame_factory.build_rst_stream_frame(
54 assert c.data_to_send() == rst_frame.serialize()
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/tests/tools/third_party/h2/test/
H A Dtest_closed_streams.py370 rst_frame = frame_factory.build_rst_stream_frame(
373 c.receive_data(rst_frame.serialize())
379 rst_frame = frame_factory.build_rst_stream_frame(
383 assert c.data_to_send() == rst_frame.serialize()
387 assert c.data_to_send() == rst_frame.serialize() * 3
395 assert c.data_to_send() == rst_frame.serialize() * 3
419 rst_frame = frame_factory.build_rst_stream_frame(
422 c.receive_data(rst_frame.serialize())
483 rst_frame = frame_factory.build_rst_stream_frame(
491 rst_frame = frame_factory.build_rst_stream_frame(
[all …]
H A Dtest_stream_reset.py49 rst_frame = frame_factory.build_rst_stream_frame(
54 assert c.data_to_send() == rst_frame.serialize()
/dports/www/py-h2/h2-4.0.0/test/
H A Dtest_closed_streams.py378 rst_frame = frame_factory.build_rst_stream_frame(
381 c.receive_data(rst_frame.serialize())
387 rst_frame = frame_factory.build_rst_stream_frame(
391 assert c.data_to_send() == rst_frame.serialize()
395 assert c.data_to_send() == rst_frame.serialize() * 3
403 assert c.data_to_send() == rst_frame.serialize() * 3
427 rst_frame = frame_factory.build_rst_stream_frame(
430 c.receive_data(rst_frame.serialize())
491 rst_frame = frame_factory.build_rst_stream_frame(
499 rst_frame = frame_factory.build_rst_stream_frame(
[all …]
H A Dtest_stream_reset.py49 rst_frame = frame_factory.build_rst_stream_frame(
54 assert c.data_to_send() == rst_frame.serialize()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/quic/core/http/
H A Dquic_spdy_server_stream_base_test.cc77 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), in TEST_F() local
79 stream_->OnStreamReset(rst_frame); in TEST_F()
H A Dquic_receive_control_stream_test.cc147 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, in TEST_P() local
152 receive_control_stream_->OnStreamReset(rst_frame); in TEST_P()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/quic/core/qpack/
H A Dqpack_receive_stream_test.cc86 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, in TEST_P() local
91 qpack_receive_stream_->OnStreamReset(rst_frame); in TEST_P()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/quic/core/http/
H A Dquic_spdy_server_stream_base_test.cc99 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), in TEST_F() local
101 stream_->OnStreamReset(rst_frame); in TEST_F()
H A Dquic_receive_control_stream_test.cc150 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, in TEST_P() local
155 receive_control_stream_->OnStreamReset(rst_frame); in TEST_P()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/quic/core/qpack/
H A Dqpack_receive_stream_test.cc88 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, in TEST_P() local
93 qpack_receive_stream_->OnStreamReset(rst_frame); in TEST_P()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/quic/core/
H A Dquic_stream_test.cc435 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), in TEST_P() local
437 stream_->OnStreamReset(rst_frame); in TEST_P()
479 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), in TEST_P() local
481 stream_->OnStreamReset(rst_frame); in TEST_P()
660 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), in TEST_P() local
662 stream_->OnStreamReset(rst_frame); in TEST_P()
675 stream_->OnStreamReset(rst_frame); in TEST_P()
721 stream_->OnStreamReset(rst_frame); in TEST_P()
1013 stream_->OnStreamReset(rst_frame); in TEST_P()
1037 stream_->OnStreamReset(rst_frame); in TEST_P()
[all …]
H A Dquic_packet_creator_test.cc2555 QuicRstStreamFrame* rst_frame = CreateRstStreamFrame(); in TEST_F() local
2557 creator_.ConsumeRetransmittableControlFrame(QuicFrame(rst_frame), in TEST_F()
2562 delete rst_frame; in TEST_F()
2583 QuicRstStreamFrame* rst_frame = CreateRstStreamFrame(); in TEST_F() local
2590 delete rst_frame; in TEST_F()
2607 QuicRstStreamFrame* rst_frame = CreateRstStreamFrame(); in TEST_F() local
2614 delete rst_frame; in TEST_F()
3003 QuicRstStreamFrame* rst_frame = CreateRstStreamFrame(); in TEST_F() local
3013 creator_.ConsumeRetransmittableControlFrame(QuicFrame(rst_frame), in TEST_F()
3075 QuicRstStreamFrame* rst_frame = CreateRstStreamFrame(); in TEST_F() local
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/quic/core/
H A Dquic_stream_test.cc628 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), in TEST_P() local
630 stream_->OnStreamReset(rst_frame); in TEST_P()
638 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), in TEST_P() local
643 stream_->OnStreamReset(rst_frame); in TEST_P()
688 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), in TEST_P() local
691 stream_->OnStreamReset(rst_frame); in TEST_P()
964 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), in TEST_P() local
968 stream_->OnStreamReset(rst_frame); in TEST_P()
990 QuicRstStreamFrame rst_frame(kInvalidControlFrameId, stream_->id(), in TEST_P() local
992 stream_->OnStreamReset(rst_frame); in TEST_P()
[all …]
H A Dquic_packet_creator_test.cc2528 QuicRstStreamFrame* rst_frame = CreateRstStreamFrame(); in TEST_F() local
2530 creator_.ConsumeRetransmittableControlFrame(QuicFrame(rst_frame), in TEST_F()
2535 delete rst_frame; in TEST_F()
2541 QuicRstStreamFrame* rst_frame = CreateRstStreamFrame(); in TEST_F() local
2548 delete rst_frame; in TEST_F()
2565 QuicRstStreamFrame* rst_frame = CreateRstStreamFrame(); in TEST_F() local
2572 delete rst_frame; in TEST_F()
2947 QuicRstStreamFrame* rst_frame = CreateRstStreamFrame(); in TEST_F() local
2957 creator_.ConsumeRetransmittableControlFrame(QuicFrame(rst_frame), in TEST_F()
3019 QuicRstStreamFrame* rst_frame = CreateRstStreamFrame(); in TEST_F() local
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/modules/peerconnection/adapters/
H A Dp2p_quic_stream_unittest.cc212 quic::QuicRstStreamFrame rst_frame(quic::kInvalidControlFrameId, kStreamId, in TEST_F() local
220 stream_->OnStreamReset(rst_frame); in TEST_F()
535 quic::QuicRstStreamFrame rst_frame(quic::kInvalidControlFrameId, kStreamId, in TEST_F() local
537 stream_->OnStreamReset(rst_frame); in TEST_F()
/dports/multimedia/gstreamer1-plugins-svt-av1/SVT-AV1-3971c982311d49f9355dc8dccdcf8d21b70fa624/Source/Lib/Common/Codec/
H A DAv1Common.h50 Yv12BufferConfig rst_frame; member
/dports/multimedia/svt-av1/SVT-AV1-3971c982311d49f9355dc8dccdcf8d21b70fa624/Source/Lib/Common/Codec/
H A DAv1Common.h50 Yv12BufferConfig rst_frame; member

123