Lines Matching defs:outbuf
1515 nghttp2_buf outbuf;
1522 nghttp2_buf_wrap_init(&outbuf, b, sizeof(b));
1531 len = nghttp2_hd_huff_decode(&ctx, &outbuf, bufs.cur->buf.pos,
1535 CU_ASSERT((ssize_t)sizeof(t1) == nghttp2_buf_len(&outbuf));
1537 CU_ASSERT(0 == memcmp(t1, outbuf.pos, sizeof(t1)));
1545 nghttp2_buf outbuf;
1549 nghttp2_buf_wrap_init(&outbuf, b, sizeof(b));
1551 len = nghttp2_hd_huff_decode(&ctx, &outbuf, e, 1, 1);
1554 CU_ASSERT(0 == memcmp("a", outbuf.pos, 1));
1557 nghttp2_buf_wrap_init(&outbuf, b, sizeof(b));
1559 len = nghttp2_hd_huff_decode(&ctx, &outbuf, e, 2, 1);
1564 nghttp2_buf_wrap_init(&outbuf, b, sizeof(b));
1566 len = nghttp2_hd_huff_decode(&ctx, &outbuf, e, 2, 6);
1571 nghttp2_buf_wrap_init(&outbuf, b, sizeof(b));
1573 len = nghttp2_hd_huff_decode(&ctx, &outbuf, e, 5, 0);