Searched refs:sys_timeout (Results 1 - 16 of 16) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dtimers.c101 sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL);
120 sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL);
137 sys_timeout(UDP_PROXY_TMR_INTERVAL, proxy_udp_timer, NULL);
151 sys_timeout(UDP_PROXY_TMR_INTERVAL, proxy_udp_timer, NULL);
168 sys_timeout(IP_TMR_INTERVAL, ip_reass_timer, NULL);
184 sys_timeout(ARP_TMR_INTERVAL, arp_timer, NULL);
200 sys_timeout(DHCP_COARSE_TIMER_MSECS, dhcp_timer_coarse, NULL);
214 sys_timeout(DHCP_FINE_TIMER_MSECS, dhcp_timer_fine, NULL);
230 sys_timeout(AUTOIP_TMR_INTERVAL, autoip_timer, NULL);
246 sys_timeout(IGMP_TMR_INTERVA
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dtimers.h61 * using sys_timeout().
63 * @param arg Additional argument to pass to the function - set up by sys_timeout()
81 #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);
/vbox/src/VBox/Devices/Network/lwip/src/api/
H A Dtcpip.c64 sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL);
79 sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL);
91 sys_timeout(1000, ip_timer, NULL);
110 sys_timeout(1000, ip_timer, NULL);
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dsys.h49 #define sys_timeout(m,h,a) macro
86 * sys_timeout():
94 void sys_timeout(u32_t msecs, sys_timeout_handler h, void *arg);
/vbox/src/VBox/Devices/Network/lwip/src/netif/
H A Dloopif.c93 sys_timeout( 1, loopif_input, arg );
H A Dethernetif.c269 sys_timeout(ARP_TMR_INTERVAL, arp_timer, NULL);
322 sys_timeout(ARP_TMR_INTERVAL, arp_timer, NULL);
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dsys.c157 sys_timeout(u32_t msecs, sys_timeout_handler h, void *arg) function
173 LWIP_DEBUGF(SYS_DEBUG, ("sys_timeout: %p msecs=%"U32_F" h=%p arg=%p\n",
176 LWIP_ASSERT("sys_timeout: timeouts != NULL", timeouts != NULL);
267 sys_timeout(timeout, sswt_handler, &sswt_cb);
/vbox/src/VBox/NetworkServices/NAT/
H A Dproxy_rtadvd.c100 sys_timeout(3 * 1000, proxy_rtadvd_timer, proxy_netif);
149 sys_timeout(delay, proxy_rtadvd_timer, proxy_netif);
H A Dpxdns.c445 sys_timeout(1 * 1000, pxdns_timer, pxdns);
596 sys_timeout(1 * 1000, pxdns_timer, pxdns);
H A Dproxy_tftpd.c409 sys_timeout(xfer->timeout * 1000, tftp_timeout, xfer);
H A Dpxping.c1079 sys_timeout(1 * 1000, pxping_timer, pxping);
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/
H A Dppp_oe.c515 sys_timeout(PPPOE_DISC_TIMEOUT * (1 + sc->sc_padr_retried), pppoe_timeout, sc);
773 sys_timeout(retry_wait, pppoe_timeout, sc);
785 sys_timeout(PPPOE_DISC_TIMEOUT * (1 + sc->sc_padi_retried), pppoe_timeout, sc);
792 sys_timeout(PPPOE_DISC_TIMEOUT * (1 + sc->sc_padr_retried), pppoe_timeout, sc);
823 sys_timeout(PPPOE_DISC_TIMEOUT, pppoe_timeout, sc);
840 sys_timeout(20, pppoe_timeout, sc);
H A Dppp_impl.h108 #define TIMEOUT(f, a, t) do { sys_untimeout((f), (a)); sys_timeout((t)*1000, (f), (a)); } while(0)
/vbox/src/VBox/Devices/Network/lwip/src/netif/ppp/
H A Dppp.h94 #define TIMEOUT(f, a, t) sys_untimeout((f), (a)), sys_timeout((t)*1000, (f), (a))
/vbox/src/VBox/Devices/Network/lwip/vbox/include/
H A Dlwipopts.h240 #define sys_timeout lwip_sys_timeout macro
/vbox/src/VBox/Devices/Network/lwip-new/src/api/
H A Dtcpip.c129 sys_timeout(msg->msg.tmo.msecs, msg->msg.tmo.h, msg->msg.tmo.arg);
259 * call sys_timeout in tcpip_thread

Completed in 66 milliseconds