Lines Matching defs:length
38 nghttp2_put_uint32be(&buf[0], (uint32_t)(hd->length << 8));
46 hd->length = nghttp2_get_uint32(&buf[0]) >> 8;
53 void nghttp2_frame_hd_init(nghttp2_frame_hd *hd, size_t length, uint8_t type,
55 hd->length = length;
183 /* At this moment, the length of DATA frame is unknown */
314 hd.length = nghttp2_buf_len(buf);
316 DEBUGF("send: HEADERS/PUSH_PROMISE, payloadlen=%zu\n", hd.length);
339 hd.length = nghttp2_buf_len(buf);
341 DEBUGF("send: int CONTINUATION, payloadlen=%zu\n", hd.length);
348 hd.length = nghttp2_buf_len(buf);
352 DEBUGF("send: last CONTINUATION, payloadlen=%zu\n", hd.length);
394 frame->hd.length = nghttp2_bufs_len(bufs);
486 if (nghttp2_buf_avail(buf) < frame->hd.length) {
584 frame->hd.length = nghttp2_bufs_len(bufs);
799 if (nghttp2_buf_avail(buf) < frame->hd.length) {
814 assert(nghttp2_buf_len(buf) == NGHTTP2_FRAME_HDLEN + frame->hd.length);
1210 hd->length += padlen;
1213 DEBUGF("send: final payloadlen=%zu, padlen=%zu\n", hd->length, padlen);