Searched refs:p_from (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()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()1061 len = p_from->len - offset_from; 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()1074 p_from = p_from->next; in pbuf_copy()1083 if ((p_from != NULL) && (p_from->len == p_from->tot_len)) { in pbuf_copy()1086 (p_from->next == NULL), return ERR_VAL;); 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 5 milliseconds