Searched refs:msecs (Results 1 – 5 of 5) sorted by relevance
/lk-master/external/lib/lwip/include/lwip/ |
A D | timers.h | 80 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);
|
A D | tcpip.h | 113 err_t tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg); 153 u32_t msecs; member
|
/lk-master/external/lib/lwip/core/ |
A D | dhcp.c | 229 u16_t msecs; in dhcp_check() local 240 msecs = 500; in dhcp_check() 287 u16_t msecs; in dhcp_select() local 327 msecs = (dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000; in dhcp_select() 836 u16_t msecs; in dhcp_decline() local 858 msecs = 10*1000; in dhcp_decline() 876 u16_t msecs; in dhcp_discover() local 1026 u16_t msecs; in dhcp_renew() local 1080 u16_t msecs; in dhcp_rebind() local 1130 u16_t msecs; in dhcp_reboot() local [all …]
|
A D | timers.c | 263 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()
|
/lk-master/external/lib/lwip/api/ |
A D | tcpip.c | 123 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()
|
Completed in 8 milliseconds