Home
last modified time | relevance | path

Searched refs:rcbuf_ptr (Results 1 – 2 of 2) sorted by relevance

/AliOS-Things-master/components/linkkit/external/nghttp2/
A Dnghttp2_rcbuf.c33 int nghttp2_rcbuf_new(nghttp2_rcbuf **rcbuf_ptr, size_t size, nghttp2_mem *mem) in nghttp2_rcbuf_new() argument
42 *rcbuf_ptr = (void *)p; in nghttp2_rcbuf_new()
44 (*rcbuf_ptr)->mem_user_data = mem->mem_user_data; in nghttp2_rcbuf_new()
45 (*rcbuf_ptr)->free = mem->free; in nghttp2_rcbuf_new()
46 (*rcbuf_ptr)->base = p + sizeof(nghttp2_rcbuf); in nghttp2_rcbuf_new()
47 (*rcbuf_ptr)->len = size; in nghttp2_rcbuf_new()
48 (*rcbuf_ptr)->ref = 1; in nghttp2_rcbuf_new()
53 int nghttp2_rcbuf_new2(nghttp2_rcbuf **rcbuf_ptr, const uint8_t *src, in nghttp2_rcbuf_new2() argument
58 rv = nghttp2_rcbuf_new(rcbuf_ptr, srclen + 1, mem); in nghttp2_rcbuf_new2()
63 (*rcbuf_ptr)->len = srclen; in nghttp2_rcbuf_new2()
[all …]
A Dnghttp2_rcbuf.h57 int nghttp2_rcbuf_new(nghttp2_rcbuf **rcbuf_ptr, size_t size, nghttp2_mem *mem);
72 int nghttp2_rcbuf_new2(nghttp2_rcbuf **rcbuf_ptr, const uint8_t *src,

Completed in 3 milliseconds