Home
last modified time | relevance | path

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

/openthread-3.6.0/third_party/tcplp/lib/
Dcbuf.c127 …bufhead* chdr, void* data, size_t data_offset, size_t numbytes, int pop, cbuf_copier_t copy_into) { in cbuf_read_unsafe() argument
131 copy_into(data, data_offset, buf_data, chdr->r_index, numbytes); in cbuf_read_unsafe()
137 copy_into(data, data_offset, buf_data, chdr->r_index, bytes_to_end); in cbuf_read_unsafe()
138 copy_into(data, data_offset + bytes_to_end, buf_data, 0, numbytes - bytes_to_end); in cbuf_read_unsafe()
146 …bufhead* chdr, void* data, size_t data_offset, size_t numbytes, int pop, cbuf_copier_t copy_into) { in cbuf_read() argument
151 cbuf_read_unsafe(chdr, data, data_offset, numbytes, pop, copy_into); in cbuf_read()
155 …d* chdr, void* data, size_t data_offset, size_t numbytes, size_t offset, cbuf_copier_t copy_into) { in cbuf_read_offset() argument
165 cbuf_read_unsafe(chdr, data, data_offset, numbytes, 0, copy_into); in cbuf_read_offset()
Dcbuf.h68 …cbufhead* chdr, void* data, size_t data_offset, size_t numbytes, int pop, cbuf_copier_t copy_into);
71 …ad* chdr, void* data, size_t data_offset, size_t numbytes, size_t offset, cbuf_copier_t copy_into);