Home
last modified time | relevance | path

Searched refs:app_error_code (Results 1 – 18 of 18) sorted by relevance

/third_party/nghttp2/src/
Dh2load_http3_session.cc131 int stream_close(nghttp3_conn *conn, int64_t stream_id, uint64_t app_error_code, in stream_close() argument
134 if (s->stream_close(stream_id, app_error_code) != 0) { in stream_close()
141 int Http3Session::stream_close(int64_t stream_id, uint64_t app_error_code) { in stream_close() argument
146 client_->on_stream_close(stream_id, app_error_code == NGHTTP3_H3_NO_ERROR); in stream_close()
216 int stop_sending(nghttp3_conn *conn, int64_t stream_id, uint64_t app_error_code, in stop_sending() argument
219 if (s->stop_sending(stream_id, app_error_code) != 0) { in stop_sending()
226 int Http3Session::stop_sending(int64_t stream_id, uint64_t app_error_code) { in stop_sending() argument
228 app_error_code); in stop_sending()
238 int reset_stream(nghttp3_conn *conn, int64_t stream_id, uint64_t app_error_code, in reset_stream() argument
241 if (s->reset_stream(stream_id, app_error_code) != 0) { in reset_stream()
[all …]
Dh2load_http3_session.h48 int stream_close(int64_t stream_id, uint64_t app_error_code);
54 int stop_sending(int64_t stream_id, uint64_t app_error_code);
55 int reset_stream(int64_t stream_id, uint64_t app_error_code);
57 int close_stream(int64_t stream_id, uint64_t app_error_code);
Dshrpx_http3_upstream.h121 int shutdown_stream(Downstream *downstream, uint64_t app_error_code);
122 int shutdown_stream_read(int64_t stream_id, uint64_t app_error_code);
123 int http_stream_close(Downstream *downstream, uint64_t app_error_code);
126 int stream_close(int64_t stream_id, uint64_t app_error_code);
131 int http_reset_stream(int64_t stream_id, uint64_t app_error_code);
132 int http_stop_sending(int64_t stream_id, uint64_t app_error_code);
Dh2load_quic.cc114 uint64_t app_error_code, void *user_data, in stream_close() argument
119 app_error_code = NGHTTP3_H3_NO_ERROR; in stream_close()
122 if (c->quic_stream_close(stream_id, app_error_code) != 0) { in stream_close()
129 int Client::quic_stream_close(int64_t stream_id, uint64_t app_error_code) { in quic_stream_close() argument
131 if (s->close_stream(stream_id, app_error_code) != 0) { in quic_stream_close()
139 uint64_t app_error_code, void *user_data, in stream_reset() argument
142 if (c->quic_stream_reset(stream_id, app_error_code) != 0) { in stream_reset()
149 int Client::quic_stream_reset(int64_t stream_id, uint64_t app_error_code) { in quic_stream_reset() argument
159 uint64_t app_error_code, void *user_data, in stream_stop_sending() argument
162 if (c->quic_stream_stop_sending(stream_id, app_error_code) != 0) { in stream_stop_sending()
[all …]
Dshrpx_http3_upstream.cc304 uint64_t app_error_code, void *user_data, in stream_close() argument
309 app_error_code = NGHTTP3_H3_NO_ERROR; in stream_close()
312 if (upstream->stream_close(stream_id, app_error_code) != 0) { in stream_close()
320 int Http3Upstream::stream_close(int64_t stream_id, uint64_t app_error_code) { in stream_close() argument
325 auto rv = nghttp3_conn_close_stream(httpconn_, stream_id, app_error_code); in stream_close()
420 uint64_t app_error_code, void *user_data, in stream_reset() argument
449 uint64_t app_error_code, void *user_data, in stream_stop_sending() argument
2471 uint64_t app_error_code, void *conn_user_data, in http_stream_close() argument
2480 if (upstream->http_stream_close(downstream, app_error_code) != 0) { in http_stream_close()
2489 uint64_t app_error_code) { in http_stream_close() argument
[all …]
Dh2load.h493 int quic_stream_close(int64_t stream_id, uint64_t app_error_code);
494 int quic_stream_reset(int64_t stream_id, uint64_t app_error_code);
495 int quic_stream_stop_sending(int64_t stream_id, uint64_t app_error_code);
/third_party/node/deps/ngtcp2/ngtcp2/lib/
Dngtcp2_strm.h161 uint64_t app_error_code; member
308 void ngtcp2_strm_set_app_error_code(ngtcp2_strm *strm, uint64_t app_error_code);
Dngtcp2_log.c151 static const char *strapperrorcode(uint64_t app_error_code) { in strapperrorcode() argument
152 (void)app_error_code; in strapperrorcode()
286 strapperrorcode(fr->app_error_code), fr->app_error_code, fr->final_size); in log_fr_reset_stream()
389 strapperrorcode(fr->app_error_code), fr->app_error_code); in log_fr_stop_sending()
Dngtcp2_strm.c62 strm->app_error_code = 0; in ngtcp2_strm_init()
689 uint64_t app_error_code) { in ngtcp2_strm_set_app_error_code() argument
694 assert(0 == strm->app_error_code); in ngtcp2_strm_set_app_error_code()
697 strm->app_error_code = app_error_code; in ngtcp2_strm_set_app_error_code()
Dngtcp2_pkt.h228 uint64_t app_error_code; member
290 uint64_t app_error_code; member
Dngtcp2_conn.c174 strm->app_error_code, conn->user_data, in conn_call_stream_close()
184 uint64_t final_size, uint64_t app_error_code, in conn_call_stream_reset() argument
192 rv = conn->callbacks.stream_reset(conn, stream_id, final_size, app_error_code, in conn_call_stream_reset()
394 uint64_t app_error_code, in conn_call_stream_stop_sending() argument
402 rv = conn->callbacks.stream_stop_sending(conn, stream_id, app_error_code, in conn_call_stream_stop_sending()
3711 (*pfrc)->fr.stop_sending.app_error_code, strm->stream_user_data); in conn_write_pkt()
7244 uint64_t app_error_code) { in conn_reset_stream() argument
7256 frc->fr.reset_stream.app_error_code = app_error_code; in conn_reset_stream()
7277 uint64_t app_error_code) { in conn_stop_sending() argument
7289 frc->fr.stop_sending.app_error_code = app_error_code; in conn_stop_sending()
[all …]
Dngtcp2_pkt.c857 dest->app_error_code = ngtcp2_get_varint(&n, p); in ngtcp2_pkt_decode_reset_stream_frame()
1240 dest->app_error_code = ngtcp2_get_varint(&n, p); in ngtcp2_pkt_decode_stop_sending_frame()
1692 ngtcp2_put_varint_len(fr->app_error_code) + in ngtcp2_pkt_encode_reset_stream_frame()
1704 p = ngtcp2_put_varint(p, fr->app_error_code); in ngtcp2_pkt_encode_reset_stream_frame()
1908 ngtcp2_put_varint_len(fr->app_error_code); in ngtcp2_pkt_encode_stop_sending_frame()
1919 p = ngtcp2_put_varint(p, fr->app_error_code); in ngtcp2_pkt_encode_stop_sending_frame()
Dngtcp2_conn.h1087 size_t destlen, uint64_t app_error_code, const uint8_t *reason,
Dngtcp2_qlog.c389 p = write_pair_number(p, "error_code", fr->app_error_code); in write_reset_stream_frame()
407 p = write_pair_number(p, "error_code", fr->app_error_code); in write_stop_sending_frame()
/third_party/node/deps/ngtcp2/nghttp3/lib/includes/nghttp3/
Dnghttp3.h1619 uint64_t app_error_code,
1755 uint64_t app_error_code,
1773 uint64_t app_error_code,
2185 uint64_t app_error_code);
/third_party/curl/lib/vquic/
Dcurl_ngtcp2.c827 int64_t stream3_id, uint64_t app_error_code, in cb_stream_close() argument
840 app_error_code = NGHTTP3_H3_NO_ERROR; in cb_stream_close()
844 app_error_code); in cb_stream_close()
846 PRIu64 ") -> %d", stream3_id, app_error_code, rv); in cb_stream_close()
857 uint64_t final_size, uint64_t app_error_code, in cb_stream_reset() argument
866 (void)app_error_code; in cb_stream_reset()
879 uint64_t app_error_code, void *user_data, in cb_stream_stop_sending() argument
886 (void)app_error_code; in cb_stream_stop_sending()
1120 uint64_t app_error_code, void *user_data, in cb_h3_stream_close() argument
1134 stream->error3 = app_error_code; in cb_h3_stream_close()
[all …]
/third_party/node/deps/ngtcp2/ngtcp2/lib/includes/ngtcp2/
Dngtcp2.h2865 int64_t stream_id, uint64_t app_error_code,
2879 uint64_t final_size, uint64_t app_error_code,
3285 uint64_t app_error_code,
4300 uint64_t app_error_code);
4320 uint64_t app_error_code);
4339 uint64_t app_error_code);
/third_party/node/deps/ngtcp2/nghttp3/lib/
Dnghttp3_conn.c140 uint64_t app_error_code) { in conn_call_stop_sending() argument
147 rv = conn->callbacks.stop_sending(conn, stream->node.nid.id, app_error_code, in conn_call_stop_sending()
157 uint64_t app_error_code) { in conn_call_reset_stream() argument
164 rv = conn->callbacks.reset_stream(conn, stream->node.nid.id, app_error_code, in conn_call_reset_stream()
2376 uint64_t app_error_code) { in nghttp3_conn_close_stream() argument
2389 stream->error_code = app_error_code; in nghttp3_conn_close_stream()