Home
last modified time | relevance | path

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

/btstack/3rd-party/lwip/core/src/core/
H A Dnetif.c374 netif->loop_cnt_current = 0; in netif_add()
1144 if (((netif->loop_cnt_current + clen) < netif->loop_cnt_current) || in netif_loop_output()
1145 ((netif->loop_cnt_current + clen) > LWIP_MIN(LWIP_LOOPBACK_MAX_PBUFS, 0xFFFF))) { in netif_loop_output()
1152 netif->loop_cnt_current = (u16_t)(netif->loop_cnt_current + clen); in netif_loop_output()
1263 ((netif->loop_cnt_current - clen) < netif->loop_cnt_current)); in netif_poll()
1264 netif->loop_cnt_current = (u16_t)(netif->loop_cnt_current - clen); in netif_poll()
/btstack/3rd-party/lwip/core/src/include/lwip/
H A Dnetif.h399 u16_t loop_cnt_current; member