Home
last modified time | relevance | path

Searched refs:proclen (Results 1 – 4 of 4) sorted by relevance

/third_party/nghttp2/examples/
Ddeflate.c174 size_t proclen; in inflate_header_block() local
183 proclen = (size_t)rv; in inflate_header_block()
185 in += proclen; in inflate_header_block()
186 inlen -= proclen; in inflate_header_block()
/third_party/node/deps/nghttp2/lib/
Dnghttp2_session.c3873 ssize_t proclen; in inflate_header_block() local
3895 proclen = nghttp2_hd_inflate_hd_nv(&session->hd_inflater, &nv, in inflate_header_block()
3897 if (nghttp2_is_fatal((int)proclen)) { in inflate_header_block()
3898 return (int)proclen; in inflate_header_block()
3900 if (proclen < 0) { in inflate_header_block()
3922 in += proclen; in inflate_header_block()
3923 inlen -= (size_t)proclen; in inflate_header_block()
3924 *readlen_ptr += (size_t)proclen; in inflate_header_block()
3926 DEBUGF("recv: proclen=%zd\n", proclen); in inflate_header_block()
7303 ssize_t proclen = nghttp2_session_mem_recv(session, buf, (size_t)readlen); in nghttp2_session_recv() local
[all …]
/third_party/nghttp2/lib/
Dnghttp2_session.c3878 ssize_t proclen; in inflate_header_block() local
3900 proclen = nghttp2_hd_inflate_hd_nv(&session->hd_inflater, &nv, in inflate_header_block()
3902 if (nghttp2_is_fatal((int)proclen)) { in inflate_header_block()
3903 return (int)proclen; in inflate_header_block()
3905 if (proclen < 0) { in inflate_header_block()
3927 in += proclen; in inflate_header_block()
3928 inlen -= (size_t)proclen; in inflate_header_block()
3929 *readlen_ptr += (size_t)proclen; in inflate_header_block()
3931 DEBUGF("recv: proclen=%zd\n", proclen); in inflate_header_block()
7314 ssize_t proclen = nghttp2_session_mem_recv(session, buf, (size_t)readlen); in nghttp2_session_recv() local
[all …]
/third_party/nghttp2/tests/
Dnghttp2_session_test.c12983 size_t proclen; in test_nghttp2_http_ignore_regular_header() local
13005 proclen = 0; in test_nghttp2_http_ignore_regular_header()
13008 rv = nghttp2_session_mem_recv(session, bufs.head->buf.pos + proclen, in test_nghttp2_http_ignore_regular_header()
13009 nghttp2_buf_len(&bufs.head->buf) - proclen); in test_nghttp2_http_ignore_regular_header()
13011 proclen += (size_t)rv; in test_nghttp2_http_ignore_regular_header()
13015 rv = nghttp2_session_mem_recv(session, bufs.head->buf.pos + proclen, in test_nghttp2_http_ignore_regular_header()
13016 nghttp2_buf_len(&bufs.head->buf) - proclen); in test_nghttp2_http_ignore_regular_header()
13024 proclen += (size_t)rv; in test_nghttp2_http_ignore_regular_header()
13026 CU_ASSERT(nghttp2_buf_len(&bufs.head->buf) == proclen); in test_nghttp2_http_ignore_regular_header()
13035 proclen = 0; in test_nghttp2_http_ignore_regular_header()
[all …]