Home
last modified time | relevance | path

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

/components/libc/posix/delay/
A Ddelay.c20 void msleep(unsigned int msecs) in msleep() argument
22 rt_thread_mdelay(msecs); in msleep()
42 void mdelay(unsigned long msecs) in mdelay() argument
44 rt_hw_us_delay(msecs * 1000); in mdelay()
A Ddelay.h15 void msleep(unsigned int msecs);
17 void mdelay(unsigned long msecs);
/components/net/lwip/lwip-1.4.1/src/include/lwip/
A 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);
A Dtcpip.h113 err_t tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg);
153 u32_t msecs; member
/components/net/lwip/lwip-2.0.3/src/include/lwip/
A Dtimeouts.h99 void sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_nam…
100 #define sys_timeout(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler) argument
102 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg);
A Dtcpip.h96 err_t tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg);
/components/net/lwip/lwip-2.1.2/src/include/lwip/
A Dtimeouts.h106 void sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_nam…
107 #define sys_timeout(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler) argument
109 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg);
A Dtcpip.h99 err_t tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg);
/components/net/lwip/lwip-2.0.3/src/core/
A Dtimeouts.c201 sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_name) in sys_timeout_debug() argument
204 sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg) in sys_timeout_debug()
227 timeout->time = msecs + diff; in sys_timeout_debug()
231 (void *)timeout, msecs, handler_name, (void *)arg)); in sys_timeout_debug()
239 if (next_timeout->time > msecs) { in sys_timeout_debug()
240 next_timeout->time -= msecs; in sys_timeout_debug()
249 } else if (timeout->time > msecs) { in sys_timeout_debug()
254 timeout->time = msecs + next_timeout->time; in sys_timeout_debug()
/components/net/lwip/lwip-1.4.1/src/core/
A Ddhcp.c229 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 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()
/components/net/lwip/lwip-2.0.3/src/core/ipv4/
A Ddhcp.c295 u16_t msecs; in dhcp_check() local
308 msecs = 500; in dhcp_check()
356 u16_t msecs; in dhcp_select() local
398 msecs = (dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000; in dhcp_select()
923 u16_t msecs; in dhcp_decline() local
947 msecs = 10*1000; in dhcp_decline()
965 u16_t msecs; in dhcp_discover() local
1004 msecs = (dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000; in dhcp_discover()
1131 u16_t msecs; in dhcp_renew() local
1183 u16_t msecs; in dhcp_rebind() local
[all …]
/components/net/lwip/lwip-2.1.2/src/core/ipv4/
A Ddhcp.c307 u16_t msecs; in dhcp_check() local
320 msecs = 500; in dhcp_check()
370 u16_t msecs; in dhcp_select() local
419 msecs = (u16_t)((dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000); in dhcp_select()
948 u16_t msecs; in dhcp_decline() local
976 msecs = 10 * 1000; in dhcp_decline()
994 u16_t msecs; in dhcp_discover() local
1036 msecs = (u16_t)((dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000); in dhcp_discover()
1163 u16_t msecs; in dhcp_renew() local
1219 u16_t msecs; in dhcp_rebind() local
[all …]
/components/net/lwip/lwip-2.1.2/src/core/
A Dtimeouts.c287 sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char *handler_name) in sys_timeout_debug() argument
290 sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg) in sys_timeout_debug()
297 …LWIP_ASSERT("Timeout time too long, max is LWIP_UINT32_MAX/4 msecs", msecs <= (LWIP_UINT32_MAX / 4… in sys_timeout_debug()
299 next_timeout_time = (u32_t)(sys_now() + msecs); /* overflow handled by TIME_LESS_THAN macro */ in sys_timeout_debug()
/components/net/lwip/lwip-1.4.1/src/api/
A 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()
/components/net/lwip/lwip-2.0.3/src/api/
A Dtcpip.c132 sys_timeout(msg->msg.tmo.msecs, msg->msg.tmo.h, msg->msg.tmo.arg); in tcpip_thread()
269 tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg) in tcpip_timeout() argument
281 msg->msg.tmo.msecs = msecs; in tcpip_timeout()
/components/net/lwip/lwip-2.1.2/src/api/
A Dtcpip.c184 sys_timeout(msg->msg.tmo.msecs, msg->msg.tmo.h, msg->msg.tmo.arg); in tcpip_thread_handle_msg()
377 tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg) in tcpip_timeout() argument
389 msg->msg.tmo.msecs = msecs; in tcpip_timeout()
/components/net/lwip/lwip-2.1.2/src/core/ipv6/
A Ddhcp6.c455 u16_t msecs; in dhcp6_information_request() local
484 msecs = (u16_t)((dhcp6->tries < 6 ? 1 << dhcp6->tries : 60) * 1000); in dhcp6_information_request()
485 dhcp6->request_timeout = (u16_t)((msecs + DHCP6_TIMER_MSECS - 1) / DHCP6_TIMER_MSECS); in dhcp6_information_request()
486 …CE | LWIP_DBG_STATE, ("dhcp6_information_request(): set request timeout %"U16_F" msecs\n", msecs)); in dhcp6_information_request()
/components/net/lwip/lwip-2.0.3/src/include/lwip/priv/
A Dtcpip_priv.h146 u32_t msecs; member
/components/net/lwip/lwip-2.1.2/src/include/lwip/priv/
A Dtcpip_priv.h156 u32_t msecs; member

Completed in 38 milliseconds