Home
last modified time | relevance | path

Searched refs:loop_cnt_current (Results 1 – 2 of 2) sorted by relevance

/third_party/lwip/src/core/
Dnetif.c362 netif->loop_cnt_current = 0; in netif_add()
1121 if (((netif->loop_cnt_current + clen) < netif->loop_cnt_current) || in netif_loop_output()
1122 ((netif->loop_cnt_current + clen) > LWIP_MIN(LWIP_LOOPBACK_MAX_PBUFS, 0xFFFF))) { in netif_loop_output()
1129 netif->loop_cnt_current = (u16_t)(netif->loop_cnt_current + clen); in netif_loop_output()
1250 ((netif->loop_cnt_current - clen) < netif->loop_cnt_current)); in netif_poll()
1251 netif->loop_cnt_current = (u16_t)(netif->loop_cnt_current - clen); in netif_poll()
/third_party/lwip/src/include/lwip/
Dnetif.h387 u16_t loop_cnt_current; member