Home
last modified time | relevance | path

Searched refs:nghttp2_submit_rst_stream (Results 1 - 13 of 13) sorted by relevance

/third_party/nghttp2/src/
H A Dnghttp.cc379 nghttp2_submit_rst_stream(client->session, NGHTTP2_FLAG_NONE, in continue_timeout_cb()
1758 nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, stream_id, in on_data_chunk_recv_callback()
1802 nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, req->stream_id, in check_response_header()
1809 nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, req->stream_id, in check_response_header()
1926 nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, frame->hd.stream_id, in on_header_callback()
1949 nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, in on_header_callback()
2016 nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, in on_frame_recv_callback2()
2059 nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, in on_frame_recv_callback2()
2070 nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, in on_frame_recv_callback2()
2079 nghttp2_submit_rst_stream(sessio in on_frame_recv_callback2()
[all...]
H A Dshrpx_http2_upstream.cc1419 rv = nghttp2_submit_rst_stream(session_, NGHTTP2_FLAG_NONE, in rst_stream()
1422 ULOG(FATAL, this) << "nghttp2_submit_rst_stream() failed: " in rst_stream()
H A Dshrpx_http2_session.cc784 int rv = nghttp2_submit_rst_stream(session_, NGHTTP2_FLAG_NONE, stream_id, in submit_rst_stream()
787 SSLOG(FATAL, this) << "nghttp2_submit_rst_stream() failed: " in submit_rst_stream()
H A DHttpServer.cc1056 return nghttp2_submit_rst_stream(session_, NGHTTP2_FLAG_NONE, in submit_rst_stream()
/third_party/nghttp2/tests/
H A Dfailmalloc_test.c180 rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, 3, NGHTTP2_CANCEL); in run_nghttp2_session_send()
H A Dnghttp2_session_test.c1132 nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, 1, NGHTTP2_NO_ERROR); in test_nghttp2_session_recv_data_no_auto_flow_control()
1807 rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, 1, in test_nghttp2_session_recv_headers_for_closed_stream()
6966 rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, 1, in test_nghttp2_submit_rst_stream()
6980 rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, 2, in test_nghttp2_submit_rst_stream()
6996 rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, 1, in test_nghttp2_submit_rst_stream()
7014 rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, 2, in test_nghttp2_submit_rst_stream()
7041 rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, stream_id, in test_nghttp2_submit_rst_stream()
7861 CU_ASSERT(0 == nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, 1, in test_nghttp2_session_on_ctrl_not_send()
10324 nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, 2, NGHTTP2_CANCEL); in test_nghttp2_session_cancel_reserved_remote()
10355 nghttp2_submit_rst_stream(sessio in test_nghttp2_session_cancel_reserved_remote()
[all...]
/third_party/curl/lib/
H A Dhttp2.c306 nghttp2_submit_rst_stream(ctx->h2, NGHTTP2_FLAG_NONE, in http2_data_done()
1007 rv = nghttp2_submit_rst_stream(ctx->h2, NGHTTP2_FLAG_NONE, in on_stream_frame()
1064 rv = nghttp2_submit_rst_stream(ctx->h2, NGHTTP2_FLAG_NONE, in on_stream_frame()
1444 (void)nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, in on_header()
/third_party/nghttp2/examples/
H A Dlibevent-server.c451 rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE, in error_reply()
/third_party/nghttp2/lib/
H A Dnghttp2_submit.c273 int nghttp2_submit_rst_stream(nghttp2_session *session, uint8_t flags, in nghttp2_submit_rst_stream() function
/third_party/node/deps/nghttp2/lib/
H A Dnghttp2_submit.c273 int nghttp2_submit_rst_stream(nghttp2_session *session, uint8_t flags, in nghttp2_submit_rst_stream() function
/third_party/nghttp2/lib/includes/nghttp2/
H A Dnghttp2.h937 * error code is desirable, use `nghttp2_submit_rst_stream()` with a
1674 * `nghttp2_submit_rst_stream()` with a desired error code and then
1677 * parameter in `nghttp2_submit_rst_stream()` if frame is
1751 * `nghttp2_submit_rst_stream()` with a desired error code and then
1754 * parameter in `nghttp2_submit_rst_stream()` if frame is
1837 * error code, call `nghttp2_submit_rst_stream()` with the error code
1873 * error code, call `nghttp2_submit_rst_stream()` with the error code
4370 NGHTTP2_EXTERN int nghttp2_submit_rst_stream(nghttp2_session *session,
/third_party/node/deps/nghttp2/lib/includes/nghttp2/
H A Dnghttp2.h932 * error code is desirable, use `nghttp2_submit_rst_stream()` with a
1669 * `nghttp2_submit_rst_stream()` with a desired error code and then
1672 * parameter in `nghttp2_submit_rst_stream()` if frame is
1746 * `nghttp2_submit_rst_stream()` with a desired error code and then
1749 * parameter in `nghttp2_submit_rst_stream()` if frame is
1832 * error code, call `nghttp2_submit_rst_stream()` with the error code
1868 * error code, call `nghttp2_submit_rst_stream()` with the error code
4354 NGHTTP2_EXTERN int nghttp2_submit_rst_stream(nghttp2_session *session,
/third_party/node/src/
H A Dnode_http2.cc906 nghttp2_submit_rst_stream( in OnBeginHeadersCallback()
2315 CHECK_EQ(nghttp2_submit_rst_stream( in FlushRstStream()

Completed in 49 milliseconds