Home
last modified time | relevance | path

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

/lib/liblwip/src/core/
Dpbuf.c922 u16_t buf_copy_len; in pbuf_copy_partial() local
941 buf_copy_len = p->len - offset; in pbuf_copy_partial()
942 if (buf_copy_len > len) in pbuf_copy_partial()
943 buf_copy_len = len; in pbuf_copy_partial()
945 MEMCPY(&((char*)dataptr)[left], &((char*)p->payload)[offset], buf_copy_len); in pbuf_copy_partial()
946 copied_total += buf_copy_len; in pbuf_copy_partial()
947 left += buf_copy_len; in pbuf_copy_partial()
948 len -= buf_copy_len; in pbuf_copy_partial()
969 u16_t buf_copy_len; in pbuf_take() local
983 buf_copy_len = total_copy_len; in pbuf_take()
[all …]