/third_party/nghttp2/src/ |
D | app_helper.h | 54 int lib_error_code, void *user_data); 63 int verbose_error_callback(nghttp2_session *session, int lib_error_code,
|
D | app_helper.cc | 421 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
|
D | shrpx_http2_session.cc | 1515 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()
|
D | shrpx_http2_upstream.cc | 810 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()
|
D | nghttp.cc | 2141 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/ |
D | nghttp2.h | 1479 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/ |
D | nghttp2.h | 1484 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/ |
D | nghttp2_session.c | 79 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/ |
D | nghttp2_session.c | 79 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/ |
D | node_http2.cc | 993 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()
|
D | node_http2.h | 847 int lib_error_code, 861 int lib_error_code,
|
/third_party/nghttp2/tests/ |
D | nghttp2_session_test.c | 221 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()
|