Home
last modified time | relevance | path

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

/AliOS-Things-master/components/lwip/lwip2.0.0/core/
A Dpbuf.c1046 u16_t offset_to=0, offset_from=0, len; in pbuf_copy() local
1059 if ((p_to->len - offset_to) >= (p_from->len - offset_from)) { in pbuf_copy()
1061 len = p_from->len - offset_from; in pbuf_copy()
1066 MEMCPY((u8_t*)p_to->payload + offset_to, (u8_t*)p_from->payload + offset_from, len); in pbuf_copy()
1068 offset_from += len; in pbuf_copy()
1070 LWIP_ASSERT("offset_from <= p_from->len", offset_from <= p_from->len); in pbuf_copy()
1071 if (offset_from >= p_from->len) { in pbuf_copy()
1073 offset_from = 0; in pbuf_copy()

Completed in 5 milliseconds