Home
last modified time | relevance | path

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

/external/syslinux/core/lwip/src/core/
Dtimers.c86 sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL); in tcpip_tcp_timer()
105 sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL); in tcp_timer_needed()
122 sys_timeout(IP_TMR_INTERVAL, ip_reass_timer, NULL); in ip_reass_timer()
139 sys_timeout(ARP_TMR_INTERVAL, arp_timer, NULL); in arp_timer()
155 sys_timeout(DHCP_COARSE_TIMER_MSECS, dhcp_timer_coarse, NULL); in dhcp_timer_coarse()
169 sys_timeout(DHCP_FINE_TIMER_MSECS, dhcp_timer_fine, NULL); in dhcp_timer_fine()
185 sys_timeout(AUTOIP_TMR_INTERVAL, autoip_timer, NULL); in autoip_timer()
201 sys_timeout(IGMP_TMR_INTERVAL, igmp_timer, NULL); in igmp_timer()
217 sys_timeout(DNS_TMR_INTERVAL, dns_timer, NULL); in dns_timer()
225 sys_timeout(IP_TMR_INTERVAL, ip_reass_timer, NULL); in sys_timeouts_init()
[all …]
/external/syslinux/core/lwip/src/include/lwip/
Dtimers.h79 #define sys_timeout(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler) macro
81 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg);
/external/syslinux/core/lwip/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.h107 #define TIMEOUT(f, a, t) do { sys_untimeout((f), (a)); sys_timeout((t)*1000, (f), (a)); } while(…
/external/syslinux/core/lwip/src/api/
Dtcpip.c129 sys_timeout(msg->msg.tmo.msecs, msg->msg.tmo.h, msg->msg.tmo.arg); in tcpip_thread()
/external/syslinux/core/lwip/
DCHANGELOG1403 each 10ms (but, it's intrusive if you use sys_timeout feature). Now, you can
2118 like "sys_timeout" in their application threads.