/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/http2/ |
H A D | http2_structures.h | 144 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 D | http2_structures.cc | 45 return a.stream_dependency == b.stream_dependency && a.weight == b.weight; in operator ==() 51 << ", stream=" << stream_dependency in ToString()
|
H A D | http2_structures_test.cc | 360 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 D | http2_structures_test_util.cc | 24 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 D | http2_structures.h | 144 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 D | http2_structures.cc | 45 return a.stream_dependency == b.stream_dependency && a.weight == b.weight; in operator ==() 51 << ", stream=" << stream_dependency in ToString()
|
H A D | http2_structures_test.cc | 362 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 D | http2_structures_test_util.cc | 24 p->stream_dependency = rng->Rand32() & StreamIdMask(); in Randomize()
|
/dports/www/trafficserver/trafficserver-9.1.1/doc/developer-guide/api/functions/ |
H A D | TSHttpTxnClientStreamPriorityGet.en.rst | 50 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 D | decode_http2_structures.cc | 34 out->stream_dependency = stream_id_and_flag & StreamIdMask(); in DoDecode() 35 if (out->stream_dependency == stream_id_and_flag) { in DoDecode()
|
H A D | decode_http2_structures_test.cc | 158 EXPECT_EQ(5u, structure_.stream_dependency); in TEST_F() 171 EXPECT_EQ(StreamIdMask(), structure_.stream_dependency); in TEST_F()
|
H A D | http2_structure_decoder_test.cc | 250 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 D | decode_http2_structures.cc | 35 out->stream_dependency = stream_id_and_flag & StreamIdMask(); in DoDecode() 36 if (out->stream_dependency == stream_id_and_flag) { in DoDecode()
|
H A D | decode_http2_structures_test.cc | 157 EXPECT_EQ(5u, structure_.stream_dependency); in TEST_F() 170 EXPECT_EQ(StreamIdMask(), structure_.stream_dependency); in TEST_F()
|
H A D | http2_structure_decoder_test.cc | 249 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 D | http2_frame_builder.cc | 99 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 D | http2_frame_builder.cc | 99 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 D | HTTP2.h | 283 …Http2Priority() : weight(HTTP2_PRIORITY_DEFAULT_WEIGHT), stream_dependency(HTTP2_PRIORITY_DEFAULT_… in Http2Priority() 287 uint32_t stream_dependency; member
|
H A D | Http2ConnectionState.cc | 308 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 D | test_h2_encoder.c | 221 .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 D | h2_frames.c | 210 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 D | transaction_data.cc | 270 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 D | h2_frames.h | 83 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 D | http2_frame_decoder_adapter.cc | 494 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 D | http2_frame_decoder_adapter.cc | 488 priority.weight, priority.stream_dependency, in OnHeadersPriority() 515 visitor()->OnPriority(header.stream_id, priority.stream_dependency, in OnPriorityFrame()
|