Home
last modified time | relevance | path

Searched refs:encoded_buf (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/include/zephyr/net/http/
Dhpack.h132 int http_hpack_huffman_decode(const uint8_t *encoded_buf, size_t encoded_len,
/Zephyr-latest/subsys/net/lib/http/
Dhttp_huffman.c329 int http_hpack_huffman_decode(const uint8_t *encoded_buf, size_t encoded_len, in http_hpack_huffman_decode() argument
339 if (encoded_buf == NULL || buf == NULL || encoded_len == 0) { in http_hpack_huffman_decode()
350 bits |= *encoded_buf & in http_hpack_huffman_decode()
357 bits |= (*encoded_buf >> in http_hpack_huffman_decode()
372 encoded_buf++; in http_hpack_huffman_decode()
Dhttp_hpack.c210 static int hpack_huffman_decode(const uint8_t *encoded_buf, size_t encoded_len, in hpack_huffman_decode() argument
220 ret = http_hpack_huffman_decode(encoded_buf, encoded_len, buf, buflen); in hpack_huffman_decode()