Home
last modified time | relevance | path

Searched refs:lib_error_code (Results 1 - 12 of 12) sorted by relevance

/third_party/nghttp2/src/
H A Dapp_helper.h54 int lib_error_code, void *user_data);
63 int verbose_error_callback(nghttp2_session *session, int lib_error_code,
H A Dapp_helper.cc421 int lib_error_code, in verbose_on_invalid_frame_recv_callback()
425 nghttp2_strerror(lib_error_code)); in verbose_on_invalid_frame_recv_callback()
457 int verbose_error_callback(nghttp2_session *session, int lib_error_code, in verbose_error_callback() argument
419 verbose_on_invalid_frame_recv_callback(nghttp2_session *session, const nghttp2_frame *frame, int lib_error_code, void *user_data) verbose_on_invalid_frame_recv_callback() argument
H A Dshrpx_http2_session.cc1515 const nghttp2_frame *frame, int lib_error_code, in on_frame_not_send_callback()
1521 << ", lib_error_code=" << lib_error_code << ": " in on_frame_not_send_callback()
1522 << nghttp2_strerror(lib_error_code); in on_frame_not_send_callback()
1525 lib_error_code == NGHTTP2_ERR_STREAM_CLOSED || in on_frame_not_send_callback()
1526 lib_error_code == NGHTTP2_ERR_STREAM_CLOSING) { in on_frame_not_send_callback()
1540 if (lib_error_code == NGHTTP2_ERR_START_STREAM_NOT_ALLOWED) { in on_frame_not_send_callback()
1514 on_frame_not_send_callback(nghttp2_session *session, const nghttp2_frame *frame, int lib_error_code, void *user_data) on_frame_not_send_callback() argument
H A Dshrpx_http2_upstream.cc810 const nghttp2_frame *frame, int lib_error_code, in on_frame_not_send_callback()
816 << ", lib_error_code=" << lib_error_code << ":" in on_frame_not_send_callback()
817 << nghttp2_strerror(lib_error_code); in on_frame_not_send_callback()
820 lib_error_code != NGHTTP2_ERR_STREAM_CLOSED && in on_frame_not_send_callback()
821 lib_error_code != NGHTTP2_ERR_STREAM_CLOSING) { in on_frame_not_send_callback()
809 on_frame_not_send_callback(nghttp2_session *session, const nghttp2_frame *frame, int lib_error_code, void *user_data) on_frame_not_send_callback() argument
H A Dnghttp.cc2141 const nghttp2_frame *frame, int lib_error_code, in on_frame_not_send_callback()
2155 << " failed: " << nghttp2_strerror(lib_error_code) << std::endl; in on_frame_not_send_callback()
2140 on_frame_not_send_callback(nghttp2_session *session, const nghttp2_frame *frame, int lib_error_code, void *user_data) on_frame_not_send_callback() argument
/third_party/nghttp2/lib/includes/nghttp2/
H A Dnghttp2.h1463 * received. The error is indicated by the |lib_error_code|, which is
1484 nghttp2_session *session, const nghttp2_frame *frame, int lib_error_code,
1580 * |lib_error_code|, which is one of the values defined in
1599 int lib_error_code,
2090 * |lib_error_code| is one of error code defined in
2109 int lib_error_code, const char *msg,
3855 * Returns string describing the |lib_error_code|. The
3856 * |lib_error_code| must be one of the :enum:`nghttp2_error`.
3858 NGHTTP2_EXTERN const char *nghttp2_strerror(int lib_error_code);
5069 NGHTTP2_EXTERN int nghttp2_is_fatal(int lib_error_code);
[all...]
/third_party/node/deps/nghttp2/lib/includes/nghttp2/
H A Dnghttp2.h1458 * received. The error is indicated by the |lib_error_code|, which is
1479 nghttp2_session *session, const nghttp2_frame *frame, int lib_error_code,
1575 * |lib_error_code|, which is one of the values defined in
1594 int lib_error_code,
2085 * |lib_error_code| is one of error code defined in
2104 int lib_error_code, const char *msg,
3839 * Returns string describing the |lib_error_code|. The
3840 * |lib_error_code| must be one of the :enum:`nghttp2_error`.
3842 NGHTTP2_EXTERN const char *nghttp2_strerror(int lib_error_code);
5053 NGHTTP2_EXTERN int nghttp2_is_fatal(int lib_error_code);
[all...]
/third_party/nghttp2/lib/
H A Dnghttp2_session.c79 static int is_non_fatal(int lib_error_code) { in is_non_fatal() argument
80 return lib_error_code < 0 && lib_error_code > NGHTTP2_ERR_FATAL; in is_non_fatal()
83 int nghttp2_is_fatal(int lib_error_code) { in nghttp2_is_fatal() argument
84 return lib_error_code < NGHTTP2_ERR_FATAL; in nghttp2_is_fatal()
158 int lib_error_code, const char *fmt, in session_call_error_callback()
202 rv = session->callbacks.error_callback2(session, lib_error_code, buf, in session_call_error_callback()
3739 static uint32_t get_error_code_from_lib_error_code(int lib_error_code) { in get_error_code_from_lib_error_code() argument
3740 switch (lib_error_code) { in get_error_code_from_lib_error_code()
3771 int lib_error_code) { in session_call_on_invalid_frame_recv_callback()
157 session_call_error_callback(nghttp2_session *session, int lib_error_code, const char *fmt, ...) session_call_error_callback() argument
3769 session_call_on_invalid_frame_recv_callback(nghttp2_session *session, nghttp2_frame *frame, int lib_error_code) session_call_on_invalid_frame_recv_callback() argument
3781 session_handle_invalid_stream2(nghttp2_session *session, int32_t stream_id, nghttp2_frame *frame, int lib_error_code) session_handle_invalid_stream2() argument
3800 session_handle_invalid_stream(nghttp2_session *session, nghttp2_frame *frame, int lib_error_code) session_handle_invalid_stream() argument
3807 session_inflate_handle_invalid_stream(nghttp2_session *session, nghttp2_frame *frame, int lib_error_code) session_inflate_handle_invalid_stream() argument
3821 session_handle_invalid_connection(nghttp2_session *session, nghttp2_frame *frame, int lib_error_code, const char *reason) session_handle_invalid_connection() argument
3835 session_inflate_handle_invalid_connection(nghttp2_session *session, nghttp2_frame *frame, int lib_error_code, const char *reason) session_inflate_handle_invalid_connection() argument
[all...]
/third_party/node/deps/nghttp2/lib/
H A Dnghttp2_session.c79 static int is_non_fatal(int lib_error_code) { in is_non_fatal() argument
80 return lib_error_code < 0 && lib_error_code > NGHTTP2_ERR_FATAL; in is_non_fatal()
83 int nghttp2_is_fatal(int lib_error_code) { in nghttp2_is_fatal() argument
84 return lib_error_code < NGHTTP2_ERR_FATAL; in nghttp2_is_fatal()
158 int lib_error_code, const char *fmt, in session_call_error_callback()
202 rv = session->callbacks.error_callback2(session, lib_error_code, buf, in session_call_error_callback()
3734 static uint32_t get_error_code_from_lib_error_code(int lib_error_code) { in get_error_code_from_lib_error_code() argument
3735 switch (lib_error_code) { in get_error_code_from_lib_error_code()
3766 int lib_error_code) { in session_call_on_invalid_frame_recv_callback()
157 session_call_error_callback(nghttp2_session *session, int lib_error_code, const char *fmt, ...) session_call_error_callback() argument
3764 session_call_on_invalid_frame_recv_callback(nghttp2_session *session, nghttp2_frame *frame, int lib_error_code) session_call_on_invalid_frame_recv_callback() argument
3776 session_handle_invalid_stream2(nghttp2_session *session, int32_t stream_id, nghttp2_frame *frame, int lib_error_code) session_handle_invalid_stream2() argument
3795 session_handle_invalid_stream(nghttp2_session *session, nghttp2_frame *frame, int lib_error_code) session_handle_invalid_stream() argument
3802 session_inflate_handle_invalid_stream(nghttp2_session *session, nghttp2_frame *frame, int lib_error_code) session_inflate_handle_invalid_stream() argument
3816 session_handle_invalid_connection(nghttp2_session *session, nghttp2_frame *frame, int lib_error_code, const char *reason) session_handle_invalid_connection() argument
3830 session_inflate_handle_invalid_connection(nghttp2_session *session, nghttp2_frame *frame, int lib_error_code, const char *reason) session_inflate_handle_invalid_connection() argument
[all...]
/third_party/node/src/
H A Dnode_http2.cc993 int lib_error_code, in OnInvalidFrame()
1002 lib_error_code); in OnInvalidFrame()
1009 if (nghttp2_is_fatal(lib_error_code) || in OnInvalidFrame()
1010 lib_error_code == NGHTTP2_ERR_STREAM_CLOSED) { in OnInvalidFrame()
1016 Local<Value> arg = Integer::New(isolate, lib_error_code); in OnInvalidFrame()
1268 int lib_error_code, in OnNghttpError()
1276 if (lib_error_code == NGHTTP2_ERR_SETTINGS_EXPECTED) { in OnNghttpError()
991 OnInvalidFrame(nghttp2_session* handle, const nghttp2_frame* frame, int lib_error_code, void* user_data) OnInvalidFrame() argument
1267 OnNghttpError(nghttp2_session* handle, int lib_error_code, const char* message, size_t len, void* user_data) OnNghttpError() argument
H A Dnode_http2.h847 int lib_error_code,
861 int lib_error_code,
/third_party/nghttp2/tests/
H A Dnghttp2_session_test.c221 int lib_error_code, void *user_data) { in on_invalid_frame_recv_callback()
225 (void)lib_error_code; in on_invalid_frame_recv_callback()
219 on_invalid_frame_recv_callback(nghttp2_session *session, const nghttp2_frame *frame, int lib_error_code, void *user_data) on_invalid_frame_recv_callback() argument

Completed in 54 milliseconds