Searched refs:p_to (Results 1 – 3 of 3) sorted by relevance
1044 pbuf_copy(struct pbuf *p_to, const struct pbuf *p_from) in pbuf_copy() argument1049 (const void*)p_to, (const void*)p_from)); in pbuf_copy()1052 LWIP_ERROR("pbuf_copy: target not big enough to hold source", ((p_to != NULL) && in pbuf_copy()1053 (p_from != NULL) && (p_to->tot_len >= p_from->tot_len)), return ERR_ARG;); in pbuf_copy()1059 if ((p_to->len - offset_to) >= (p_from->len - offset_from)) { in pbuf_copy()1064 len = p_to->len - offset_to; in pbuf_copy()1069 LWIP_ASSERT("offset_to <= p_to->len", offset_to <= p_to->len); in pbuf_copy()1076 if (offset_to == p_to->len) { in pbuf_copy()1079 p_to = p_to->next; in pbuf_copy()1088 if ((p_to != NULL) && (p_to->len == p_to->tot_len)) { in pbuf_copy()[all …]
238 err_t pbuf_copy(struct pbuf *p_to, const struct pbuf *p_from);
270 err_t pbuf_copy(struct pbuf *p_to, const struct pbuf *p_from);
Completed in 6 milliseconds