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.c425 netif->loop_cnt_current = 0;
1243 if (((netif->loop_cnt_current + clen) < netif->loop_cnt_current) ||
1244 ((netif->loop_cnt_current + clen) > LWIP_MIN(LWIP_LOOPBACK_MAX_PBUFS, 0xFFFF))) {
1251 netif->loop_cnt_current = (u16_t)(netif->loop_cnt_current + clen);
1376 ((netif->loop_cnt_current - clen) < netif->loop_cnt_current));
1377 netif->loop_cnt_current = (u16_t)(netif->loop_cnt_current - clen);
/third_party/lwip/src/include/lwip/
Dnetif.h390 u16_t loop_cnt_current; member