| /components/libc/compilers/common/ |
| A D | cwchar.c | 14 struct interval struct 20 static int bisearch(wchar_t ucs, const struct interval *table, int max) in bisearch() argument 53 static const struct interval combining[] = { in wcwidth() 101 if (bisearch(ucs, combining, sizeof(combining) / sizeof(struct interval) - 1)) in wcwidth()
|
| A D | ctime.c | 806 struct timespec interval; /* Reload value */ member 898 …timer->reload = ((timer->interval.tv_sec * NANOSECOND_PER_SECOND + timer->interval.tv_nsec) * RT_K… in rtthread_timer_wrapper() 1017 timer->interval.tv_sec = 0; in timer_create() 1018 timer->interval.tv_nsec = 0; in timer_create() 1152 its->it_interval = timer->interval; in timer_gettime() 1232 timer->interval.tv_sec = value->it_interval.tv_sec; in timer_settime() 1233 timer->interval.tv_nsec = value->it_interval.tv_nsec; in timer_settime()
|
| /components/drivers/usb/cherryusb/core/ |
| A D | usbh_core.h | 50 #define USBH_GET_URB_INTERVAL(interval, speed) (speed < USB_SPEED_HIGH ? (interval * 1000) : ((1 <<… argument 228 urb->interval = USBH_GET_URB_INTERVAL(ep->bInterval, hport->speed); in usbh_int_urb_fill()
|
| /components/drivers/usb/cherryusb/class/wireless/ |
| A D | usbh_bluetooth.c | 279 uint32_t interval; in usbh_bluetooth_hci_evt_rx_thread() local 284 interval = g_bluetooth_class.intin->bInterval; in usbh_bluetooth_hci_evt_rx_thread() 294 usb_osal_msleep(interval); in usbh_bluetooth_hci_evt_rx_thread() 302 usb_osal_msleep(interval); in usbh_bluetooth_hci_evt_rx_thread() 315 usb_osal_msleep(interval); in usbh_bluetooth_hci_evt_rx_thread()
|
| /components/net/lwip/lwip-2.1.2/src/core/ |
| A D | altcp.c | 261 altcp_poll(struct altcp_pcb *conn, altcp_poll_fn poll, u8_t interval) in altcp_poll() argument 265 conn->pollinterval = interval; in altcp_poll() 267 conn->fns->set_poll(conn, interval); in altcp_poll() 518 altcp_default_set_poll(struct altcp_pcb *conn, u8_t interval) in altcp_default_set_poll() argument 521 altcp_poll(conn->inner_conn, conn->poll, interval); in altcp_default_set_poll()
|
| A D | altcp_tcp.c | 234 altcp_tcp_set_poll(struct altcp_pcb *conn, u8_t interval) in altcp_tcp_set_poll() argument 239 tcp_poll(pcb, altcp_tcp_poll, interval); in altcp_tcp_set_poll()
|
| A D | tcp.c | 2105 tcp_poll(struct tcp_pcb *pcb, tcp_poll_fn poll, u8_t interval) in tcp_poll() argument 2117 pcb->pollinterval = interval; in tcp_poll()
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/priv/ |
| A D | altcp_priv.h | 59 typedef void (*altcp_set_poll_fn)(struct altcp_pcb *conn, u8_t interval); 119 void altcp_default_set_poll(struct altcp_pcb *conn, u8_t interval);
|
| /components/drivers/usb/cherryusb/common/ |
| A D | usb_hc.h | 42 uint32_t interval; member
|
| /components/drivers/usb/cherryusb/port/ehci/ |
| A D | usb_hc_ehci.c | 166 int order, interval; in ehci_caculate_smask() local 168 interval = 1; in ehci_caculate_smask() 170 interval *= 2; in ehci_caculate_smask() 174 if (interval < 2) /* interval 1 */ in ehci_caculate_smask() 176 if (interval < 4) /* interval 2 */ in ehci_caculate_smask() 178 if (interval < 8) /* interval 4 */ in ehci_caculate_smask() 180 for (order = 0; (interval > 1); order++) { in ehci_caculate_smask() 181 interval >>= 1; in ehci_caculate_smask()
|
| /components/net/lwip/lwip-2.1.2/src/apps/http/ |
| A D | altcp_proxyconnect.c | 434 altcp_proxyconnect_set_poll(struct altcp_pcb *conn, u8_t interval) in altcp_proxyconnect_set_poll() argument 437 altcp_poll(conn->inner_conn, altcp_proxyconnect_lower_poll, interval); in altcp_proxyconnect_set_poll()
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/ |
| A D | altcp.h | 99 void altcp_poll(struct altcp_pcb *conn, altcp_poll_fn poll, u8_t interval);
|
| A D | tcp.h | 421 void tcp_poll (struct tcp_pcb *pcb, tcp_poll_fn poll, u8_t interval);
|
| /components/net/lwip/lwip-1.4.1/src/include/lwip/ |
| A D | tcp.h | 322 void tcp_poll (struct tcp_pcb *pcb, tcp_poll_fn poll, u8_t interval);
|
| /components/net/lwip/lwip-1.4.1/doc/ |
| A D | rawapi.txt | 262 u8_t interval) 264 Specifies the polling interval and the callback function that should 265 be called to poll the application. The interval is specified in 267 twice a second. An interval of 10 means that the application would 400 Note: you must call etharp_tmr at a ARP_TMR_INTERVAL (5 seconds) regular interval
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/ |
| A D | tcp.h | 362 void tcp_poll (struct tcp_pcb *pcb, tcp_poll_fn poll, u8_t interval);
|
| /components/net/lwip/lwip-2.0.3/doc/ |
| A D | rawapi.txt | 283 u8_t interval) 285 Specifies the polling interval and the callback function that should 286 be called to poll the application. The interval is specified in 288 twice a second. An interval of 10 means that the application would
|
| /components/net/lwip/lwip-2.1.2/src/apps/altcp_tls/ |
| A D | altcp_tls_mbedtls.c | 895 altcp_mbedtls_set_poll(struct altcp_pcb *conn, u8_t interval) in altcp_mbedtls_set_poll() argument 898 altcp_poll(conn->inner_conn, altcp_mbedtls_lower_poll, interval); in altcp_mbedtls_set_poll()
|
| /components/net/lwip/lwip-1.4.1/src/core/ |
| A D | tcp.c | 1452 tcp_poll(struct tcp_pcb *pcb, tcp_poll_fn poll, u8_t interval) in tcp_poll() argument 1460 pcb->pollinterval = interval; in tcp_poll()
|
| /components/net/lwip/lwip-2.0.3/src/core/ |
| A D | tcp.c | 1793 tcp_poll(struct tcp_pcb *pcb, tcp_poll_fn poll, u8_t interval) in tcp_poll() argument 1801 pcb->pollinterval = interval; in tcp_poll()
|
| /components/net/lwip/lwip-1.4.1/ |
| A D | CHANGELOG | 2672 interval.
|
| /components/net/lwip/lwip-2.0.3/ |
| A D | CHANGELOG | 3628 interval.
|
| /components/net/lwip/lwip-2.1.2/ |
| A D | CHANGELOG | 3881 interval.
|