Home
last modified time | relevance | path

Searched refs:stream_dependency (Results 1 – 25 of 30) sorted by relevance

12

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/http2/
H A Dhttp2_structures.h144 Http2PriorityFields(uint32_t stream_dependency, in Http2PriorityFields()
147 : stream_dependency(stream_dependency), in Http2PriorityFields()
152 DCHECK_EQ(stream_dependency, stream_dependency & StreamIdMask()) in Http2PriorityFields()
164 uint32_t stream_dependency; member
H A Dhttp2_structures.cc45 return a.stream_dependency == b.stream_dependency && a.weight == b.weight; in operator ==()
51 << ", stream=" << stream_dependency in ToString()
H A Dhttp2_structures_test.cc360 uint32_t stream_dependency = random.Rand32() & StreamIdMask(); in TEST() local
364 Http2PriorityFields v(stream_dependency, weight, is_exclusive); in TEST()
366 EXPECT_EQ(stream_dependency, v.stream_dependency); in TEST()
372 Http2PriorityFields(stream_dependency | 0x80000000, weight, is_exclusive), in TEST()
376 EXPECT_DEBUG_DEATH(Http2PriorityFields(stream_dependency, 0, is_exclusive), in TEST()
379 Http2PriorityFields(stream_dependency, weight + 256, is_exclusive), in TEST()
H A Dhttp2_structures_test_util.cc24 p->stream_dependency = rng->Rand32() & StreamIdMask(); in Randomize()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/http2/
H A Dhttp2_structures.h144 Http2PriorityFields(uint32_t stream_dependency, in Http2PriorityFields()
147 : stream_dependency(stream_dependency), in Http2PriorityFields()
152 DCHECK_EQ(stream_dependency, stream_dependency & StreamIdMask()) in Http2PriorityFields()
164 uint32_t stream_dependency; member
H A Dhttp2_structures.cc45 return a.stream_dependency == b.stream_dependency && a.weight == b.weight; in operator ==()
51 << ", stream=" << stream_dependency in ToString()
H A Dhttp2_structures_test.cc362 uint32_t stream_dependency = random.Rand32() & StreamIdMask(); in TEST() local
366 Http2PriorityFields v(stream_dependency, weight, is_exclusive); in TEST()
368 EXPECT_EQ(stream_dependency, v.stream_dependency); in TEST()
374 Http2PriorityFields(stream_dependency | 0x80000000, weight, is_exclusive), in TEST()
378 EXPECT_DEBUG_DEATH(Http2PriorityFields(stream_dependency, 0, is_exclusive), in TEST()
381 Http2PriorityFields(stream_dependency, weight + 256, is_exclusive), in TEST()
H A Dhttp2_structures_test_util.cc24 p->stream_dependency = rng->Rand32() & StreamIdMask(); in Randomize()
/dports/www/trafficserver/trafficserver-9.1.1/doc/developer-guide/api/functions/
H A DTSHttpTxnClientStreamPriorityGet.en.rst50 int32_t stream_dependency;
55 will be populated in the ``stream_dependency`` and ``weight`` members,
57 dependency, then the ``stream_dependency`` output parameter will be populated
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/http2/decoder/
H A Ddecode_http2_structures.cc34 out->stream_dependency = stream_id_and_flag & StreamIdMask(); in DoDecode()
35 if (out->stream_dependency == stream_id_and_flag) { in DoDecode()
H A Ddecode_http2_structures_test.cc158 EXPECT_EQ(5u, structure_.stream_dependency); in TEST_F()
171 EXPECT_EQ(StreamIdMask(), structure_.stream_dependency); in TEST_F()
H A Dhttp2_structure_decoder_test.cc250 EXPECT_EQ(5u, structure_->stream_dependency); in TEST_F()
262 EXPECT_EQ(StreamIdMask(), structure_->stream_dependency); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/http2/decoder/
H A Ddecode_http2_structures.cc35 out->stream_dependency = stream_id_and_flag & StreamIdMask(); in DoDecode()
36 if (out->stream_dependency == stream_id_and_flag) { in DoDecode()
H A Ddecode_http2_structures_test.cc157 EXPECT_EQ(5u, structure_.stream_dependency); in TEST_F()
170 EXPECT_EQ(StreamIdMask(), structure_.stream_dependency); in TEST_F()
H A Dhttp2_structure_decoder_test.cc249 EXPECT_EQ(5u, structure_->stream_dependency); in TEST_F()
261 EXPECT_EQ(StreamIdMask(), structure_->stream_dependency); in TEST_F()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/http2/tools/
H A Dhttp2_frame_builder.cc99 uint32_t tmp = v.stream_dependency & StreamIdMask(); in Append()
100 EXPECT_EQ(tmp, v.stream_dependency); in Append()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/http2/tools/
H A Dhttp2_frame_builder.cc99 uint32_t tmp = v.stream_dependency & StreamIdMask(); in Append()
100 EXPECT_EQ(tmp, v.stream_dependency); in Append()
/dports/www/trafficserver/trafficserver-9.1.1/proxy/http2/
H A DHTTP2.h283 …Http2Priority() : weight(HTTP2_PRIORITY_DEFAULT_WEIGHT), stream_dependency(HTTP2_PRIORITY_DEFAULT_… in Http2Priority()
287 uint32_t stream_dependency; member
H A DHttp2ConnectionState.cc308 if (stream_id == params.priority.stream_dependency) { in rcv_headers_frame()
330 … params.priority.stream_dependency, params.priority.weight, params.priority.exclusive_flag, in rcv_headers_frame()
333 …stream->priority_node = cstate.dependency_tree->add(params.priority.stream_dependency, stream_id, … in rcv_headers_frame()
449 if (stream_id == priority.stream_dependency) { in rcv_priority_frame()
472 …priority.stream_dependency, priority.weight, priority.exclusive_flag, cstate.dependency_tree->size… in rcv_priority_frame()
479 cstate.dependency_tree->reprioritize(node, priority.stream_dependency, priority.exclusive_flag); in rcv_priority_frame()
491 …cstate.dependency_tree->add(priority.stream_dependency, stream_id, priority.weight, priority.exclu… in rcv_priority_frame()
/dports/devel/aws-c-http/aws-c-http-0.6.8/tests/
H A Dtest_h2_encoder.c221 .stream_dependency = 0x01234567, in TEST_CASE()
255 .stream_dependency = 0x01234567, in TEST_CASE()
/dports/devel/aws-c-http/aws-c-http-0.6.8/source/
H A Dh2_frames.c210 AWS_PRECONDITION((priority->stream_dependency & s_u32_top_bit_mask) == 0); in s_frame_priority_settings_encode()
223 …uint32_t top_bytes = priority->stream_dependency | ((uint32_t)priority->stream_dependency_exclusiv… in s_frame_priority_settings_encode()
520 if (optional_priority && aws_h2_validate_stream_id(optional_priority->stream_dependency)) { in s_frame_new_headers_or_push_promise()
917 … (aws_h2_validate_stream_id(stream_id) || aws_h2_validate_stream_id(priority->stream_dependency)) { in aws_h2_frame_new_priority()
/dports/www/trafficserver/trafficserver-9.1.1/plugins/experimental/traffic_dump/
H A Dtransaction_data.cc270 if (priority.stream_dependency != -1) { in write_client_request_node_no_content()
272 client_request_node << R"("stream-depenency":)" << std::to_string(priority.stream_dependency); in write_client_request_node_no_content()
/dports/devel/aws-c-http/aws-c-http-0.6.8/include/aws/http/private/
H A Dh2_frames.h83 uint32_t stream_dependency; member
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/spdy/core/
H A Dhttp2_frame_decoder_adapter.cc494 priority.weight, priority.stream_dependency, in OnHeadersPriority()
521 visitor()->OnPriority(header.stream_id, priority.stream_dependency, in OnPriorityFrame()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/spdy/core/
H A Dhttp2_frame_decoder_adapter.cc488 priority.weight, priority.stream_dependency, in OnHeadersPriority()
515 visitor()->OnPriority(header.stream_id, priority.stream_dependency, in OnPriorityFrame()

12