/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/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);
|
/AliOS-Things-master/components/lwip/lwip2.0.0/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 | 100 err_t tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg);
|
/AliOS-Things-master/components/lwip/lwip2.0.0/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()
|
/AliOS-Things-master/components/ble_host/bt_host/port/core/ |
A D | timer.c | 32 struct mtimer *mtimer_start(uint32_t msecs, timeout_handler handler, void *arg) in mtimer_start() argument 60 timer_new->time = msecs + diff; in mtimer_start() 62 timer_new->time = msecs; in mtimer_start() 70 if (g_timer_list->time > msecs) { in mtimer_start() 71 g_timer_list->time -= msecs; in mtimer_start()
|
/AliOS-Things-master/hardware/chip/rtl872xd/hal/ |
A D | wdg.c | 36 uint32_t msecs = wdg->config.timeout; in hal_wdg_init() local 37 printf("hal_wdg_init, set timeout:%d ms\n", msecs); in hal_wdg_init() 38 watchdog_init(msecs); in hal_wdg_init()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ipv4/ |
A D | dhcp.c | 287 u16_t msecs; in dhcp_check() local 300 msecs = 500; in dhcp_check() 348 u16_t msecs; in dhcp_select() local 390 msecs = (dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000; in dhcp_select() 932 u16_t msecs; in dhcp_decline() local 956 msecs = 10*1000; in dhcp_decline() 974 u16_t msecs; in dhcp_discover() local 1013 msecs = (dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000; in dhcp_discover() 1144 u16_t msecs; in dhcp_renew() local 1196 u16_t msecs; in dhcp_rebind() local [all …]
|
/AliOS-Things-master/components/ble_host/bt_host/port/include/port/ |
A D | timer.h | 34 struct mtimer *mtimer_start(uint32_t msecs, timeout_handler handler, void *arg);
|
/AliOS-Things-master/components/lwip/lwip2.0.0/api/ |
A D | tcpip.c | 135 sys_timeout(msg->msg.tmo.msecs, msg->msg.tmo.h, msg->msg.tmo.arg); in tcpip_thread() 320 tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg) in tcpip_timeout() argument 332 msg->msg.tmo.msecs = msecs; in tcpip_timeout()
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/priv/ |
A D | tcpip_priv.h | 146 u32_t msecs; member
|
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/priv/ |
A D | tcpip_priv.h | 160 u32_t msecs; member
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/fwlib/usb_otg/include/ |
A D | dwc_otg_common.h | 47 void (*RamMSleep) (uint32_t msecs);
|
A D | dwc_os.h | 1006 extern _LONG_CALL_ void DWC_MDELAY(uint32_t msecs); 1014 extern _LONG_CALL_ void DWC_MSLEEP(uint32_t msecs);
|
/AliOS-Things-master/components/SDL2/src/audio/coreaudio/ |
A D | SDL_coreaudio.m | 899 const double msecs = (this->spec.samples / ((double) this->spec.freq)) * 1000.0; 901 …if (msecs < MINIMUM_AUDIO_BUFFER_TIME_MS) { /* use more buffers if we have a VERY small sample se… 902 numAudioBuffers = ((int)SDL_ceil(MINIMUM_AUDIO_BUFFER_TIME_MS / msecs) * 2);
|