Home
last modified time | relevance | path

Searched refs:msecs (Results 1 – 5 of 5) sorted by relevance

/lib/liblwip/src/include/lwip/
Dtimers.h80 void sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_nam…
81 #define sys_timeout(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler) argument
83 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg);
Dtcpip.h113 err_t tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg);
153 u32_t msecs; member
/lib/liblwip/src/core/
Dtimers.c263 sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_name) in sys_timeout_debug() argument
266 sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg) in sys_timeout_debug()
279 timeout->time = msecs; in sys_timeout_debug()
283 (void *)timeout, msecs, handler_name, (void *)arg)); in sys_timeout_debug()
291 if (next_timeout->time > msecs) { in sys_timeout_debug()
292 next_timeout->time -= msecs; in sys_timeout_debug()
Ddhcp.c229 u16_t msecs; in dhcp_check() local
240 msecs = 500; in dhcp_check()
241 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS; in dhcp_check()
242 … | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_check(): set request timeout %"U16_F" msecs\n", msecs)); in dhcp_check()
287 u16_t msecs; in dhcp_select() local
327 msecs = (dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000; in dhcp_select()
328 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS; in dhcp_select()
329 …EBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_select(): set request timeout %"U16_F" msecs\n", msecs)); in dhcp_select()
836 u16_t msecs; in dhcp_decline() local
858 msecs = 10*1000; in dhcp_decline()
[all …]
/lib/liblwip/src/api/
Dtcpip.c123 sys_timeout(msg->msg.tmo.msecs, msg->msg.tmo.h, msg->msg.tmo.arg); in tcpip_thread()
247 tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg) in tcpip_timeout() argument
258 msg->msg.tmo.msecs = msecs; in tcpip_timeout()