Home
last modified time | relevance | path

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

/Zephyr-Core-3.6.0/subsys/net/lib/dns/
Ddns_pack.c468 int dest_size = net_buf_tailroom(buf); in dns_unpack_name() local
516 (buf->data + dest_size)) || in dns_unpack_name()
/Zephyr-Core-3.6.0/kernel/
Dpipes.c202 static size_t pipe_xfer(unsigned char *dest, size_t dest_size, in pipe_xfer() argument
205 size_t num_bytes = MIN(dest_size, src_size); in pipe_xfer()
Dthread.c306 static size_t copy_bytes(char *dest, size_t dest_size, const char *src, size_t src_size) in copy_bytes() argument
310 bytes_to_copy = MIN(dest_size, src_size); in copy_bytes()