Home
last modified time | relevance | path

Searched refs:nghttp2_session_mem_recv (Results 1 - 18 of 18) sorted by relevance

/third_party/nghttp2/tests/
H A Dnghttp2_session_test.c932 rv = nghttp2_session_mem_recv(session, data, NGHTTP2_FRAME_HDLEN + 4096); in test_nghttp2_session_recv_data()
953 rv = nghttp2_session_mem_recv(session, data, NGHTTP2_FRAME_HDLEN + 4096); in test_nghttp2_session_recv_data()
966 rv = nghttp2_session_mem_recv(session, data, NGHTTP2_FRAME_HDLEN + 4096); in test_nghttp2_session_recv_data()
976 rv = nghttp2_session_mem_recv(session, data, NGHTTP2_FRAME_HDLEN + 4096); in test_nghttp2_session_recv_data()
996 rv = nghttp2_session_mem_recv(session, data, NGHTTP2_FRAME_HDLEN + 4096); in test_nghttp2_session_recv_data()
1013 rv = nghttp2_session_mem_recv(session, data, NGHTTP2_FRAME_HDLEN + 4096); in test_nghttp2_session_recv_data()
1039 rv = nghttp2_session_mem_recv(session, data, NGHTTP2_FRAME_HDLEN + 4096); in test_nghttp2_session_recv_data()
1045 rv = nghttp2_session_mem_recv(session, data, NGHTTP2_FRAME_HDLEN + 4095); in test_nghttp2_session_recv_data()
1060 rv = nghttp2_session_mem_recv(session, data, NGHTTP2_FRAME_HDLEN + 4096); in test_nghttp2_session_recv_data()
1125 rv = nghttp2_session_mem_recv(sessio in test_nghttp2_session_recv_data_no_auto_flow_control()
[all...]
/third_party/nghttp2/fuzz/
H A Dfuzz_target.cc73 nghttp2_session_mem_recv(session, data, size); in LLVMFuzzerTestOneInput()
H A Dfuzz_target_fdp.cc90 nghttp2_session_mem_recv(session, d.data(), d.size()); in LLVMFuzzerTestOneInput()
/third_party/nghttp2/src/
H A Dh2load_http2_session.cc274 auto rv = nghttp2_session_mem_recv(session_, data, len); in on_read()
H A Dshrpx_live_check.cc592 rv = nghttp2_session_mem_recv(session_, data, len); in on_read()
594 LOG(ERROR) << "nghttp2_session_mem_recv() returned error: " in on_read()
H A DHttpServer.cc655 rv = nghttp2_session_mem_recv(session_, buf.data(), nread); in read_clear()
658 std::cerr << "nghttp2_session_mem_recv() returned error: " in read_clear()
778 rv = nghttp2_session_mem_recv(session_, buf.data(), nread); in read_tls()
781 std::cerr << "nghttp2_session_mem_recv() returned error: " in read_tls()
H A Dshrpx_http2_upstream.cc1153 rv = nghttp2_session_mem_recv(session_, rb->pos(), rb->rleft()); in on_read()
1156 ULOG(ERROR, this) << "nghttp2_session_mem_recv() returned error: " in on_read()
1162 // nghttp2_session_mem_recv should consume all input bytes on in on_read()
H A Dshrpx_http2_session.cc1766 rv = nghttp2_session_mem_recv(session_, data, datalen); in downstream_read()
1768 SSLOG(ERROR, this) << "nghttp2_session_mem_recv() returned error: " in downstream_read()
H A Dnghttp.cc1268 auto rv = nghttp2_session_mem_recv(session, data, len); in on_read()
1270 std::cerr << "[ERROR] nghttp2_session_mem_recv() returned error: " in on_read()
/third_party/nghttp2/examples/
H A Dlibevent-server.c308 function. Invocation of nghttp2_session_mem_recv() may make
317 readlen = nghttp2_session_mem_recv(session_data->session, data, datalen); in session_recv()
H A Dlibevent-client.c461 readlen = nghttp2_session_mem_recv(session_data->session, data, datalen); in readcb()
/third_party/nghttp2/lib/includes/nghttp2/
H A Dnghttp2.h1415 * If the application uses solely `nghttp2_session_mem_recv()`
1429 * `nghttp2_session_mem_recv()` when a frame is received. The
1447 * `nghttp2_session_recv()` and `nghttp2_session_mem_recv()` functions
1462 * `nghttp2_session_mem_recv()` when an invalid non-DATA frame is
1476 * `nghttp2_session_recv()` and `nghttp2_session_mem_recv()` functions
1500 * If the application uses `nghttp2_session_mem_recv()`, it can return
1502 * `nghttp2_session_mem_recv()` return without processing further
1504 * `nghttp2_session_mem_recv()` or `nghttp2_session_recv()` is called.
1511 * `nghttp2_session_recv()` and `nghttp2_session_mem_recv()` functions
1618 * `nghttp2_session_recv()`, `nghttp2_session_mem_recv()`,
[all...]
/third_party/node/deps/nghttp2/lib/includes/nghttp2/
H A Dnghttp2.h1410 * If the application uses solely `nghttp2_session_mem_recv()`
1424 * `nghttp2_session_mem_recv()` when a frame is received. The
1442 * `nghttp2_session_recv()` and `nghttp2_session_mem_recv()` functions
1457 * `nghttp2_session_mem_recv()` when an invalid non-DATA frame is
1471 * `nghttp2_session_recv()` and `nghttp2_session_mem_recv()` functions
1495 * If the application uses `nghttp2_session_mem_recv()`, it can return
1497 * `nghttp2_session_mem_recv()` return without processing further
1499 * `nghttp2_session_mem_recv()` or `nghttp2_session_recv()` is called.
1506 * `nghttp2_session_recv()` and `nghttp2_session_mem_recv()` functions
1613 * `nghttp2_session_recv()`, `nghttp2_session_mem_recv()`,
[all...]
/third_party/curl/lib/
H A Dcf-h2-proxy.c448 rv = nghttp2_session_mem_recv(ctx->h2, (const uint8_t *)buf, blen); in proxy_h2_process_pending_input()
452 "process_pending_input: nghttp2_session_mem_recv() returned " in proxy_h2_process_pending_input()
H A Dhttp2.c552 rv = nghttp2_session_mem_recv(ctx->h2, (const uint8_t *)buf, blen); in h2_process_pending_input()
555 "process_pending_input: nghttp2_session_mem_recv() returned " in h2_process_pending_input()
/third_party/node/src/
H A Dnode_http2.cc802 // On each call to nghttp2_session_mem_recv, nghttp2 will begin calling the
818 nghttp2_session_mem_recv(session_.get(), in ConsumeHTTP2Data()
/third_party/nghttp2/lib/
H A Dnghttp2_session.c5814 ssize_t nghttp2_session_mem_recv(nghttp2_session *session, const uint8_t *in, in nghttp2_session_mem_recv() function
7314 ssize_t proclen = nghttp2_session_mem_recv(session, buf, (size_t)readlen); in nghttp2_session_recv()
8289 in nghttp2_session_mem_send or nghttp2_session_mem_recv is in nghttp2_session_change_stream_priority()
8327 in nghttp2_session_mem_send or nghttp2_session_mem_recv is in nghttp2_session_create_idle_stream()
/third_party/node/deps/nghttp2/lib/
H A Dnghttp2_session.c5809 ssize_t nghttp2_session_mem_recv(nghttp2_session *session, const uint8_t *in, in nghttp2_session_mem_recv() function
7303 ssize_t proclen = nghttp2_session_mem_recv(session, buf, (size_t)readlen); in nghttp2_session_recv()
8278 in nghttp2_session_mem_send or nghttp2_session_mem_recv is in nghttp2_session_change_stream_priority()
8316 in nghttp2_session_mem_send or nghttp2_session_mem_recv is in nghttp2_session_create_idle_stream()

Completed in 54 milliseconds