Home
last modified time | relevance | path

Searched refs:interval (Results 1 – 23 of 23) sorted by relevance

/components/libc/compilers/common/
A Dcwchar.c14 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 Dctime.c806 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 Dusbh_core.h50 #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 Dusbh_bluetooth.c279 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 Daltcp.c261 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 Daltcp_tcp.c234 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 Dtcp.c2105 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 Daltcp_priv.h59 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 Dusb_hc.h42 uint32_t interval; member
/components/drivers/usb/cherryusb/port/ehci/
A Dusb_hc_ehci.c166 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 Daltcp_proxyconnect.c434 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 Daltcp.h99 void altcp_poll(struct altcp_pcb *conn, altcp_poll_fn poll, u8_t interval);
A Dtcp.h421 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 Dtcp.h322 void tcp_poll (struct tcp_pcb *pcb, tcp_poll_fn poll, u8_t interval);
/components/net/lwip/lwip-1.4.1/doc/
A Drawapi.txt262 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 Dtcp.h362 void tcp_poll (struct tcp_pcb *pcb, tcp_poll_fn poll, u8_t interval);
/components/net/lwip/lwip-2.0.3/doc/
A Drawapi.txt283 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 Daltcp_tls_mbedtls.c895 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 Dtcp.c1452 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 Dtcp.c1793 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 DCHANGELOG2672 interval.
/components/net/lwip/lwip-2.0.3/
A DCHANGELOG3628 interval.
/components/net/lwip/lwip-2.1.2/
A DCHANGELOG3881 interval.

Completed in 51 milliseconds