Searched defs:p_from (Results 1 - 1 of 1) sorted by relevance

/external/syslinux/core/lwip/src/core/
H A Dpbuf.c822 * @param p_from pbuf source of the copy
826 * enough to hold p_from
829 pbuf_copy(struct pbuf *p_to, struct pbuf *p_from) argument
834 (void*)p_to, (void*)p_from));
838 (p_from != NULL) && (p_to->tot_len >= p_from->tot_len)), return ERR_ARG;);
845 if ((p_to->len - offset_to) >= (p_from->len - offset_from)) {
846 /* complete current p_from fits into current p_to */
847 len = p_from->len - offset_from;
849 /* current p_from doe
[all...]

Completed in 262 milliseconds