Home
last modified time | relevance | path

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

/reactos/drivers/network/tcpip/lwip/src/core/
H A Dnetif.c376 netif->loop_cnt_current = 0; in netif_add()
1157 if (((netif->loop_cnt_current + clen) < netif->loop_cnt_current) || in netif_loop_output()
1158 ((netif->loop_cnt_current + clen) > LWIP_MIN(LWIP_LOOPBACK_MAX_PBUFS, 0xFFFF))) { in netif_loop_output()
1165 netif->loop_cnt_current = (u16_t)(netif->loop_cnt_current + clen); in netif_loop_output()
1286 ((netif->loop_cnt_current - clen) < netif->loop_cnt_current)); in netif_poll()
1287 netif->loop_cnt_current = (u16_t)(netif->loop_cnt_current - clen); in netif_poll()
/reactos/drivers/network/tcpip/lwip/src/include/lwip/
H A Dnetif.h399 u16_t loop_cnt_current; member