Home
last modified time | relevance | path

Searched refs:sys_timeout (Results 1 – 6 of 6) sorted by relevance

/lib/liblwip/src/core/
Dtimers.c88 sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL); in tcpip_tcp_timer()
107 sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL); in tcp_timer_needed()
124 sys_timeout(IP_TMR_INTERVAL, ip_reass_timer, NULL); in ip_reass_timer()
140 sys_timeout(ARP_TMR_INTERVAL, arp_timer, NULL); in arp_timer()
156 sys_timeout(DHCP_COARSE_TIMER_MSECS, dhcp_timer_coarse, NULL); in dhcp_timer_coarse()
170 sys_timeout(DHCP_FINE_TIMER_MSECS, dhcp_timer_fine, NULL); in dhcp_timer_fine()
186 sys_timeout(AUTOIP_TMR_INTERVAL, autoip_timer, NULL); in autoip_timer()
202 sys_timeout(IGMP_TMR_INTERVAL, igmp_timer, NULL); in igmp_timer()
218 sys_timeout(DNS_TMR_INTERVAL, dns_timer, NULL); in dns_timer()
226 sys_timeout(IP_TMR_INTERVAL, ip_reass_timer, NULL); in sys_timeouts_init()
[all …]
/lib/liblwip/src/include/lwip/
Dtimers.h81 #define sys_timeout(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler) macro
83 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg);
/lib/liblwip/src/netif/ppp/
Dppp_oe.c515 sys_timeout(PPPOE_DISC_TIMEOUT * (1 + sc->sc_padr_retried), pppoe_timeout, sc); in pppoe_dispatch_disc_pkt()
773 sys_timeout(retry_wait, pppoe_timeout, sc); in pppoe_timeout()
785 sys_timeout(PPPOE_DISC_TIMEOUT * (1 + sc->sc_padi_retried), pppoe_timeout, sc); in pppoe_timeout()
792 sys_timeout(PPPOE_DISC_TIMEOUT * (1 + sc->sc_padr_retried), pppoe_timeout, sc); in pppoe_timeout()
823 sys_timeout(PPPOE_DISC_TIMEOUT, pppoe_timeout, sc); in pppoe_connect()
840 sys_timeout(20, pppoe_timeout, sc); in pppoe_disconnect()
Dppp_impl.h108 #define TIMEOUT(f, a, t) do { sys_untimeout((f), (a)); sys_timeout((t)*1000, (f), (a)); } while(…
/lib/liblwip/src/api/
Dtcpip.c123 sys_timeout(msg->msg.tmo.msecs, msg->msg.tmo.h, msg->msg.tmo.arg); in tcpip_thread()
/lib/liblwip/
DCHANGELOG1702 each 10ms (but, it's intrusive if you use sys_timeout feature). Now, you can
2417 like "sys_timeout" in their application threads.