/third_party/nghttp2/src/ |
D | shrpx_http2_session.cc | 962 auto promised_stream_id = frame->push_promise.promised_stream_id; in on_header_callback2() local 964 nghttp2_session_get_stream_user_data(session, promised_stream_id)); in on_header_callback2() 966 http2session->submit_rst_stream(promised_stream_id, NGHTTP2_CANCEL); in on_header_callback2() 1024 stream_id = frame->push_promise.promised_stream_id; in on_invalid_header_callback2() 1067 auto promised_stream_id = frame->push_promise.promised_stream_id; in on_begin_headers_callback() local 1071 http2session->submit_rst_stream(promised_stream_id, NGHTTP2_CANCEL); in on_begin_headers_callback() 1081 promised_stream_id) != 0) { in on_begin_headers_callback() 1082 http2session->submit_rst_stream(promised_stream_id, NGHTTP2_CANCEL); in on_begin_headers_callback() 1346 auto promised_stream_id = frame->push_promise.promised_stream_id; in on_frame_recv_callback() local 1352 << ", promised_stream_id=" << promised_stream_id; in on_frame_recv_callback() [all …]
|
D | shrpx_http2_upstream.cc | 708 auto promised_stream_id = frame->push_promise.promised_stream_id; in on_frame_send_callback() local 710 if (nghttp2_session_get_stream_user_data(session, promised_stream_id)) { in on_frame_send_callback() 717 upstream, handler->get_mcpool(), promised_stream_id); in on_frame_send_callback() 724 nghttp2_session_set_stream_user_data(session, promised_stream_id, in on_frame_send_callback() 2221 auto promised_stream_id = nghttp2_submit_push_promise( in submit_push_promise() local 2225 if (promised_stream_id < 0) { in submit_push_promise() 2228 << nghttp2_strerror(promised_stream_id); in submit_push_promise() 2230 if (nghttp2_is_fatal(promised_stream_id)) { in submit_push_promise() 2243 << promised_stream_id << "\n" in submit_push_promise() 2324 int32_t promised_stream_id) { in on_downstream_push_promise() argument [all …]
|
D | shrpx_upstream.h | 95 int32_t promised_stream_id) = 0;
|
D | shrpx_https_upstream.h | 87 int32_t promised_stream_id);
|
D | shrpx_http2_upstream.h | 92 int32_t promised_stream_id);
|
D | HttpServer.cc | 1030 auto promised_stream_id = nghttp2_submit_push_promise( in submit_push_promise() local 1034 if (promised_stream_id < 0) { in submit_push_promise() 1035 return promised_stream_id; in submit_push_promise() 1038 auto promised_stream = std::make_unique<Stream>(this, promised_stream_id); in submit_push_promise() 1047 add_stream(promised_stream_id, std::move(promised_stream)); in submit_push_promise() 1623 auto promised_stream_id = frame->push_promise.promised_stream_id; in hd_on_frame_send_callback() local 1624 auto promised_stream = hd->get_stream(promised_stream_id); in hd_on_frame_send_callback()
|
D | shrpx_http2_session.h | 199 int32_t promised_stream_id);
|
D | shrpx_http3_upstream.h | 83 int32_t promised_stream_id);
|
D | nghttp.cc | 1877 auto stream_id = frame->push_promise.promised_stream_id; in on_begin_headers_callback() 1942 session, frame->push_promise.promised_stream_id)); in on_header_callback() 1950 frame->push_promise.promised_stream_id, in on_header_callback() 2040 session, frame->push_promise.promised_stream_id)); in on_frame_recv_callback2() 2060 frame->push_promise.promised_stream_id, in on_frame_recv_callback2() 2071 frame->push_promise.promised_stream_id, in on_frame_recv_callback2() 2080 frame->push_promise.promised_stream_id, in on_frame_recv_callback2()
|
D | app_helper.cc | 328 frame->push_promise.padlen, frame->push_promise.promised_stream_id); in print_frame()
|
D | shrpx_https_upstream.cc | 1553 int32_t promised_stream_id) { in on_downstream_push_promise() argument
|
/third_party/nghttp2/lib/ |
D | nghttp2_submit.c | 323 int32_t promised_stream_id; in nghttp2_submit_push_promise() local 362 promised_stream_id = (int32_t)session->next_stream_id; in nghttp2_submit_push_promise() 366 promised_stream_id, nva_copy, nvlen); in nghttp2_submit_push_promise() 377 return promised_stream_id; in nghttp2_submit_push_promise()
|
D | nghttp2_frame.c | 115 int32_t promised_stream_id, in nghttp2_frame_push_promise_init() argument 121 frame->promised_stream_id = promised_stream_id; in nghttp2_frame_push_promise_init() 587 nghttp2_put_uint32be(buf->pos, (uint32_t)frame->promised_stream_id); in nghttp2_frame_pack_push_promise() 597 frame->promised_stream_id = in nghttp2_frame_unpack_push_promise_payload()
|
D | nghttp2_frame.h | 480 int32_t promised_stream_id,
|
D | nghttp2_session.c | 1188 session, frame->push_promise.promised_stream_id, in nghttp2_session_add_item() 2591 frame->push_promise.promised_stream_id); in session_prep_frame() 2592 session->last_sent_stream_id = frame->push_promise.promised_stream_id; in session_prep_frame() 3347 opened_stream_id = item->frame.push_promise.promised_stream_id; in nghttp2_session_mem_send_internal() 3422 opened_stream_id = item->frame.push_promise.promised_stream_id; in nghttp2_session_mem_send_internal() 3960 session, frame->push_promise.promised_stream_id); in inflate_header_block() 4145 session, frame->push_promise.promised_stream_id); in session_after_header_block_received() 4178 stream_id = frame->push_promise.promised_stream_id; in session_after_header_block_received() 5069 frame->push_promise.promised_stream_id)) { in nghttp2_session_on_push_promise_received() 5083 session->last_recv_stream_id = frame->push_promise.promised_stream_id; in nghttp2_session_on_push_promise_received() [all …]
|
/third_party/node/deps/nghttp2/lib/ |
D | nghttp2_submit.c | 323 int32_t promised_stream_id; in nghttp2_submit_push_promise() local 362 promised_stream_id = (int32_t)session->next_stream_id; in nghttp2_submit_push_promise() 366 promised_stream_id, nva_copy, nvlen); in nghttp2_submit_push_promise() 377 return promised_stream_id; in nghttp2_submit_push_promise()
|
D | nghttp2_frame.c | 115 int32_t promised_stream_id, in nghttp2_frame_push_promise_init() argument 121 frame->promised_stream_id = promised_stream_id; in nghttp2_frame_push_promise_init() 581 nghttp2_put_uint32be(buf->pos, (uint32_t)frame->promised_stream_id); in nghttp2_frame_pack_push_promise() 591 frame->promised_stream_id = in nghttp2_frame_unpack_push_promise_payload()
|
D | nghttp2_frame.h | 456 int32_t promised_stream_id,
|
D | nghttp2_session.c | 1176 session, frame->push_promise.promised_stream_id, in nghttp2_session_add_item() 2546 frame->push_promise.promised_stream_id); in session_prep_frame() 2547 session->last_sent_stream_id = frame->push_promise.promised_stream_id; in session_prep_frame() 3287 opened_stream_id = item->frame.push_promise.promised_stream_id; in nghttp2_session_mem_send_internal() 3361 opened_stream_id = item->frame.push_promise.promised_stream_id; in nghttp2_session_mem_send_internal() 3886 session, frame->push_promise.promised_stream_id); in inflate_header_block() 4071 session, frame->push_promise.promised_stream_id); in session_after_header_block_received() 4104 stream_id = frame->push_promise.promised_stream_id; in session_after_header_block_received() 4990 frame->push_promise.promised_stream_id)) { in nghttp2_session_on_push_promise_received() 5004 session->last_recv_stream_id = frame->push_promise.promised_stream_id; in nghttp2_session_on_push_promise_received() [all …]
|
/third_party/nghttp2/tests/ |
D | nghttp2_test_helper.c | 238 int32_t promised_stream_id, const nghttp2_nv *nva, in pack_push_promise() argument 247 promised_stream_id, dnva, nvlen); in pack_push_promise()
|
D | nghttp2_test_helper.h | 90 int32_t promised_stream_id, const nghttp2_nv *nva,
|
D | nghttp2_frame_test.c | 346 CU_ASSERT((1U << 31) - 1 == oframe.promised_stream_id); in test_nghttp2_frame_pack_push_promise()
|
/third_party/curl/lib/ |
D | http2.c | 860 frame->promised_stream_id); in push_promise() 925 newstream->id = frame->promised_stream_id; in push_promise() 1061 frame->push_promise.promised_stream_id, in on_stream_frame()
|
/third_party/nghttp2/lib/includes/nghttp2/ |
D | nghttp2.h | 1156 int32_t promised_stream_id; member
|
/third_party/node/deps/nghttp2/lib/includes/nghttp2/ |
D | nghttp2.h | 1156 int32_t promised_stream_id; member
|