Lines Matching refs:app_error_code
131 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()
248 int Http3Session::reset_stream(int64_t stream_id, uint64_t app_error_code) { in reset_stream() argument
250 app_error_code); in reset_stream()
259 int Http3Session::close_stream(int64_t stream_id, uint64_t app_error_code) { in close_stream() argument
260 auto rv = nghttp3_conn_close_stream(conn_, stream_id, app_error_code); in close_stream()