Searched refs:in_end (Results 1 - 2 of 2) sorted by relevance

/barrelfish-master/lib/lwip/src/core/
H A Dnetif.c597 struct pbuf *in_end = in; local
608 while (in_end->len != in_end->tot_len) {
610 in_end->next != NULL);
611 in_end = in_end->next;
613 /* 'in_end' now points to the last pbuf from 'in' */
614 if (in_end == netif->loop_last) {
619 netif->loop_first = in_end->next;
624 in_end
[all...]
/barrelfish-master/lib/lwip2/src/core/
H A Dnetif.c923 struct pbuf *in, *in_end; local
928 in = in_end = netif->loop_first;
929 while (in_end->len != in_end->tot_len) {
930 LWIP_ASSERT("bogus pbuf: len != tot_len but next == NULL!", in_end->next != NULL);
931 in_end = in_end->next;
943 /* 'in_end' now points to the last pbuf from 'in' */
944 if (in_end == netif->loop_last) {
949 netif->loop_first = in_end
[all...]

Completed in 83 milliseconds