Searched refs:newpbuf (Results 1 - 3 of 3) sorted by relevance

/barrelfish-master/lib/lwip/src/core/ipv4/
H A Dip_frag.c648 struct pbuf *newpbuf; local
736 newpbuf = pbuf_alloc(PBUF_RAW, 0, PBUF_REF);
737 if (newpbuf == NULL) {
742 newpbuf->payload = p->payload;
743 newpbuf->len = newpbuf->tot_len = newpbuflen;
747 pbuf_cat(rambuf, newpbuf);
/barrelfish-master/lib/lwip2/src/core/ipv4/
H A Dip4_frag.c689 struct pbuf *newpbuf; local
765 newpbuf = pbuf_alloced_custom(PBUF_RAW, newpbuflen, PBUF_REF, &pcr->pc,
767 if (newpbuf == NULL) {
779 pbuf_cat(rambuf, newpbuf);
/barrelfish-master/lib/lwip2/src/core/ipv6/
H A Dip6_frag.c667 struct pbuf *newpbuf; local
753 newpbuf = pbuf_alloced_custom(PBUF_RAW, newpbuflen, PBUF_REF, &pcr->pc, p->payload, newpbuflen);
754 if (newpbuf == NULL) {
767 pbuf_cat(rambuf, newpbuf);

Completed in 174 milliseconds