Lines Matching defs:last
795 /* set ipaddr last to ensure netmask/gw have been set when status callback is called */
1207 struct pbuf *last;
1266 /* let last point to the last pbuf in chain r */
1267 for (last = r; last->next != NULL; last = last->next) {
1268 /* nothing to do here, just get to the last pbuf */
1273 LWIP_ASSERT("if first != NULL, last must also be != NULL", netif->loop_last != NULL);
1275 netif->loop_last = last;
1284 netif->loop_last = last;
1380 /* 'in_end' now points to the last pbuf from 'in' */
1382 /* this was the last pbuf in the list */
1387 LWIP_ASSERT("should not be null since first != last!", netif->loop_first != NULL);
1920 netif_ext_callback_t *last, *iter;
1932 last = ext_callback;
1933 for (iter = ext_callback->next; iter != NULL; last = iter, iter = iter->next) {
1935 LWIP_ASSERT("last != NULL", last != NULL);
1936 last->next = callback->next;