Searched refs:cont_hd (Results 1 - 3 of 3) sorted by relevance
/third_party/nghttp2/lib/ |
H A D | nghttp2_session.c | 5822 nghttp2_frame_hd cont_hd; in nghttp2_session_mem_recv() local 6920 nghttp2_frame_unpack_frame_hd(&cont_hd, iframe->sbuf.pos); in nghttp2_session_mem_recv() 6921 iframe->payloadleft = cont_hd.length; in nghttp2_session_mem_recv() 6924 cont_hd.length, cont_hd.type, cont_hd.flags, cont_hd.stream_id); in nghttp2_session_mem_recv() 6926 if (cont_hd.type != NGHTTP2_CONTINUATION || in nghttp2_session_mem_recv() 6927 cont_hd.stream_id != iframe->frame.hd.stream_id) { in nghttp2_session_mem_recv() 6931 cont_hd in nghttp2_session_mem_recv() [all...] |
/third_party/node/deps/nghttp2/lib/ |
H A D | nghttp2_session.c | 5817 nghttp2_frame_hd cont_hd; in nghttp2_session_mem_recv() local 6909 nghttp2_frame_unpack_frame_hd(&cont_hd, iframe->sbuf.pos); in nghttp2_session_mem_recv() 6910 iframe->payloadleft = cont_hd.length; in nghttp2_session_mem_recv() 6913 cont_hd.length, cont_hd.type, cont_hd.flags, cont_hd.stream_id); in nghttp2_session_mem_recv() 6915 if (cont_hd.type != NGHTTP2_CONTINUATION || in nghttp2_session_mem_recv() 6916 cont_hd.stream_id != iframe->frame.hd.stream_id) { in nghttp2_session_mem_recv() 6920 cont_hd in nghttp2_session_mem_recv() [all...] |
/third_party/nghttp2/tests/ |
H A D | nghttp2_session_test.c | 1247 nghttp2_frame_hd cont_hd; in test_nghttp2_session_recv_continuation() local 1287 nghttp2_frame_hd_init(&cont_hd, 2, NGHTTP2_CONTINUATION, NGHTTP2_FLAG_NONE, in test_nghttp2_session_recv_continuation() 1290 nghttp2_frame_pack_frame_hd(data + datalen, &cont_hd); in test_nghttp2_session_recv_continuation() 1293 memcpy(data + datalen, buf->pos, cont_hd.length); in test_nghttp2_session_recv_continuation() 1294 datalen += cont_hd.length; in test_nghttp2_session_recv_continuation() 1295 buf->pos += cont_hd.length; in test_nghttp2_session_recv_continuation() 1298 nghttp2_frame_hd_init(&cont_hd, nghttp2_buf_len(buf), NGHTTP2_CONTINUATION, in test_nghttp2_session_recv_continuation() 1301 nghttp2_frame_pack_frame_hd(data + datalen, &cont_hd); in test_nghttp2_session_recv_continuation() 1304 memcpy(data + datalen, buf->pos, cont_hd.length); in test_nghttp2_session_recv_continuation() 1305 datalen += cont_hd in test_nghttp2_session_recv_continuation() [all...] |
Completed in 22 milliseconds