| /components/libc/posix/delay/ |
| A D | delay.c | 20 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 D | delay.h | 15 void msleep(unsigned int msecs); 17 void mdelay(unsigned long msecs);
|
| /components/net/lwip/lwip-1.4.1/src/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
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/ |
| A D | timeouts.h | 99 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 D | tcpip.h | 96 err_t tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg);
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/ |
| A D | timeouts.h | 106 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 D | tcpip.h | 99 err_t tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg);
|
| /components/net/lwip/lwip-2.0.3/src/core/ |
| A D | timeouts.c | 201 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 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()
|
| /components/net/lwip/lwip-2.0.3/src/core/ipv4/ |
| A D | dhcp.c | 295 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 D | dhcp.c | 307 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 D | timeouts.c | 287 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 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()
|
| /components/net/lwip/lwip-2.0.3/src/api/ |
| A D | tcpip.c | 132 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 D | tcpip.c | 184 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 D | dhcp6.c | 455 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 D | tcpip_priv.h | 146 u32_t msecs; member
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/priv/ |
| A D | tcpip_priv.h | 156 u32_t msecs; member
|