Home
last modified time | relevance | path

Searched refs:lib_error_code (Results 1 – 16 of 16) 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.cc406 int lib_error_code, in verbose_on_invalid_frame_recv_callback() argument
410 nghttp2_strerror(lib_error_code)); in verbose_on_invalid_frame_recv_callback()
442 int verbose_error_callback(nghttp2_session *session, int lib_error_code, in verbose_error_callback() argument
Dshrpx_http2_session.cc1502 const nghttp2_frame *frame, int lib_error_code, in on_frame_not_send_callback() argument
1508 << ", lib_error_code=" << lib_error_code << ": " in on_frame_not_send_callback()
1509 << nghttp2_strerror(lib_error_code); in on_frame_not_send_callback()
1512 lib_error_code == NGHTTP2_ERR_STREAM_CLOSED || in on_frame_not_send_callback()
1513 lib_error_code == NGHTTP2_ERR_STREAM_CLOSING) { in on_frame_not_send_callback()
1527 if (lib_error_code == NGHTTP2_ERR_START_STREAM_NOT_ALLOWED) { in on_frame_not_send_callback()
Dh2load_http2_session.cc110 const nghttp2_frame *frame, int lib_error_code, in on_frame_not_send_callback() argument
Dshrpx_http2_upstream.cc802 const nghttp2_frame *frame, int lib_error_code, in on_frame_not_send_callback() argument
808 << ", lib_error_code=" << lib_error_code << ":" in on_frame_not_send_callback()
809 << nghttp2_strerror(lib_error_code); in on_frame_not_send_callback()
812 lib_error_code != NGHTTP2_ERR_STREAM_CLOSED && in on_frame_not_send_callback()
813 lib_error_code != NGHTTP2_ERR_STREAM_CLOSING) { in on_frame_not_send_callback()
Dasio_server_http2_handler.cc223 const nghttp2_frame *frame, int lib_error_code, in on_frame_not_send_callback() argument
Dnghttp.cc2119 const nghttp2_frame *frame, int lib_error_code, in on_frame_not_send_callback() argument
2133 << " failed: " << nghttp2_strerror(lib_error_code) << std::endl; in on_frame_not_send_callback()
/third_party/node/deps/nghttp2/lib/includes/nghttp2/
Dnghttp2.h1466 nghttp2_session *session, const nghttp2_frame *frame, int lib_error_code,
1577 int lib_error_code,
2066 int lib_error_code, const char *msg,
3741 NGHTTP2_EXTERN const char *nghttp2_strerror(int lib_error_code);
4775 NGHTTP2_EXTERN int nghttp2_is_fatal(int lib_error_code);
/third_party/nghttp2/lib/includes/nghttp2/
Dnghttp2.h1477 nghttp2_session *session, const nghttp2_frame *frame, int lib_error_code,
1592 int lib_error_code,
2102 int lib_error_code, const char *msg,
3778 NGHTTP2_EXTERN const char *nghttp2_strerror(int lib_error_code);
4817 NGHTTP2_EXTERN int nghttp2_is_fatal(int lib_error_code);
/third_party/node/deps/nghttp2/lib/
Dnghttp2_session.c77 static int is_non_fatal(int lib_error_code) { in is_non_fatal() argument
78 return lib_error_code < 0 && lib_error_code > NGHTTP2_ERR_FATAL; in is_non_fatal()
81 int nghttp2_is_fatal(int lib_error_code) { in nghttp2_is_fatal() argument
82 return lib_error_code < NGHTTP2_ERR_FATAL; in nghttp2_is_fatal()
151 int lib_error_code, const char *fmt, in session_call_error_callback() argument
195 rv = session->callbacks.error_callback2(session, lib_error_code, buf, in session_call_error_callback()
3441 static uint32_t get_error_code_from_lib_error_code(int lib_error_code) { in get_error_code_from_lib_error_code() argument
3442 switch (lib_error_code) { in get_error_code_from_lib_error_code()
3473 int lib_error_code) { in session_call_on_invalid_frame_recv_callback() argument
3476 session, frame, lib_error_code, session->user_data) != 0) { in session_call_on_invalid_frame_recv_callback()
[all …]
/third_party/nghttp2/lib/
Dnghttp2_session.c77 static int is_non_fatal(int lib_error_code) { in is_non_fatal() argument
78 return lib_error_code < 0 && lib_error_code > NGHTTP2_ERR_FATAL; in is_non_fatal()
81 int nghttp2_is_fatal(int lib_error_code) { in nghttp2_is_fatal() argument
82 return lib_error_code < NGHTTP2_ERR_FATAL; in nghttp2_is_fatal()
151 int lib_error_code, const char *fmt, in session_call_error_callback() argument
195 rv = session->callbacks.error_callback2(session, lib_error_code, buf, in session_call_error_callback()
3441 static uint32_t get_error_code_from_lib_error_code(int lib_error_code) { in get_error_code_from_lib_error_code() argument
3442 switch (lib_error_code) { in get_error_code_from_lib_error_code()
3473 int lib_error_code) { in session_call_on_invalid_frame_recv_callback() argument
3476 session, frame, lib_error_code, session->user_data) != 0) { in session_call_on_invalid_frame_recv_callback()
[all …]
/third_party/nghttp2/python/
Dcnghttp2.pxd164 int lib_error_code, void *user_data)
289 const char* nghttp2_strerror(int lib_error_code)
Dnghttp2.pyx506 int lib_error_code, argument
/third_party/node/src/
Dnode_http2.cc900 int lib_error_code, in OnInvalidFrame() argument
908 lib_error_code); in OnInvalidFrame()
913 if (nghttp2_is_fatal(lib_error_code) || in OnInvalidFrame()
914 lib_error_code == NGHTTP2_ERR_STREAM_CLOSED) { in OnInvalidFrame()
920 Local<Value> arg = Integer::New(isolate, lib_error_code); in OnInvalidFrame()
Dnode_http2.h851 int lib_error_code,
/third_party/nghttp2/tests/
Dnghttp2_session_test.c220 int lib_error_code, void *user_data) { in on_invalid_frame_recv_callback() argument
224 (void)lib_error_code; in on_invalid_frame_recv_callback()