Home
last modified time | relevance | path

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

/third_party/nghttp2/src/
Dapp_helper.h54 int lib_error_code, void *user_data);
63 int verbose_error_callback(nghttp2_session *session, int lib_error_code,
Dapp_helper.cc421 int lib_error_code, in verbose_on_invalid_frame_recv_callback() argument
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
Dshrpx_http2_session.cc1515 const nghttp2_frame *frame, int lib_error_code, in on_frame_not_send_callback() argument
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()
Dshrpx_http2_upstream.cc810 const nghttp2_frame *frame, int lib_error_code, in on_frame_not_send_callback() argument
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()
Dnghttp.cc2141 const nghttp2_frame *frame, int lib_error_code, in on_frame_not_send_callback() argument
2155 << " failed: " << nghttp2_strerror(lib_error_code) << std::endl; in on_frame_not_send_callback()
/third_party/node/deps/nghttp2/lib/includes/nghttp2/
Dnghttp2.h1479 nghttp2_session *session, const nghttp2_frame *frame, int lib_error_code,
1594 int lib_error_code,
2104 int lib_error_code, const char *msg,
3842 NGHTTP2_EXTERN const char *nghttp2_strerror(int lib_error_code);
5053 NGHTTP2_EXTERN int nghttp2_is_fatal(int lib_error_code);
/third_party/nghttp2/lib/includes/nghttp2/
Dnghttp2.h1484 nghttp2_session *session, const nghttp2_frame *frame, int lib_error_code,
1599 int lib_error_code,
2109 int lib_error_code, const char *msg,
3858 NGHTTP2_EXTERN const char *nghttp2_strerror(int lib_error_code);
5069 NGHTTP2_EXTERN int nghttp2_is_fatal(int lib_error_code);
/third_party/node/deps/nghttp2/lib/
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() argument
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() argument
3769 session, frame, lib_error_code, session->user_data) != 0) { in session_call_on_invalid_frame_recv_callback()
[all …]
/third_party/nghttp2/lib/
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() argument
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() argument
3774 session, frame, lib_error_code, session->user_data) != 0) { in session_call_on_invalid_frame_recv_callback()
[all …]
/third_party/node/src/
Dnode_http2.cc993 int lib_error_code, in OnInvalidFrame() argument
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() argument
1276 if (lib_error_code == NGHTTP2_ERR_SETTINGS_EXPECTED) { in OnNghttpError()
Dnode_http2.h847 int lib_error_code,
861 int lib_error_code,
/third_party/nghttp2/tests/
Dnghttp2_session_test.c221 int lib_error_code, void *user_data) { in on_invalid_frame_recv_callback() argument
225 (void)lib_error_code; in on_invalid_frame_recv_callback()