Home
last modified time | relevance | path

Searched refs:nfds (Results 1 – 10 of 10) sorted by relevance

/hal_espressif-2.7.6/tools/test_idf_monitor/tests/
Din2f2.txt2 D (59342) vfs: esp_vfs_select starts with nfds = 55
12 D (59870) vfs: esp_vfs_select starts with nfds = 55
22 D (60397) vfs: esp_vfs_select starts with nfds = 55
32 D (60934) vfs: esp_vfs_select starts with nfds = 55
42 D (61471) vfs: esp_vfs_select starts with nfds = 55
52 D (62008) vfs: esp_vfs_select starts with nfds = 55
62 D (62536) vfs: esp_vfs_select starts with nfds = 55
72 D (63073) vfs: esp_vfs_select starts with nfds = 55
82 D (63611) vfs: esp_vfs_select starts with nfds = 55
92 D (64147) vfs: esp_vfs_select starts with nfds = 55
[all …]
Din2.txt189 D (59342) vfs: esp_vfs_select starts with nfds = 55
204 D (59870) vfs: esp_vfs_select starts with nfds = 55
214 D (60397) vfs: esp_vfs_select starts with nfds = 55
225 D (60934) vfs: esp_vfs_select starts with nfds = 55
235 D (61471) vfs: esp_vfs_select starts with nfds = 55
245 D (62008) vfs: esp_vfs_select starts with nfds = 55
255 D (62536) vfs: esp_vfs_select starts with nfds = 55
265 D (63073) vfs: esp_vfs_select starts with nfds = 55
275 D (63611) vfs: esp_vfs_select starts with nfds = 55
285 D (64147) vfs: esp_vfs_select starts with nfds = 55
[all …]
/hal_espressif-2.7.6/components/newlib/
Dpoll.c21 int poll(struct pollfd *fds, nfds_t nfds, int timeout) in poll() argument
44 for (unsigned int i = 0; i < nfds; ++i) { in poll()
76 for (unsigned int i = 0; i < nfds; ++i) { in poll()
/hal_espressif-2.7.6/components/lwip/port/esp32/
Dvfs_lwip.c56 int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *timeout) in select() argument
58 return lwip_select(nfds, readfds, writefds, errorfds, timeout); in select()
Dno_vfs_syscalls.c75 int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *timeout) in select() argument
77 return lwip_select(nfds, readfds, writefds, errorfds, timeout); in select()
/hal_espressif-2.7.6/components/newlib/platform_include/sys/
Dpoll.h42 int poll(struct pollfd *fds, nfds_t nfds, int timeout);
Dselect.h29 int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *timeout);
/hal_espressif-2.7.6/components/vfs/include/
Desp_vfs.h243 …esp_err_t (*start_select)(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, esp_vfs_…
245 …int (*socket_select)(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval…
395 int esp_vfs_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *t…
/hal_espressif-2.7.6/components/vfs/
Dvfs.c844 int esp_vfs_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *t… in esp_vfs_select() argument
851 ESP_LOGD(TAG, "esp_vfs_select starts with nfds = %d", nfds); in esp_vfs_select()
859 if (nfds > MAX_FDS || nfds < 0) { in esp_vfs_select()
882 for (int fd = 0; fd < nfds; ++fd) { in esp_vfs_select()
964 …esp_err_t err = vfs->vfs.start_select(nfds, &item->readfds, &item->writefds, &item->errorfds, sel_… in esp_vfs_select()
988 ret = socket_select(nfds, readfds, writefds, errorfds, timeout); in esp_vfs_select()
1208 int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *timeout)
Dvfs_uart.c437 static esp_err_t uart_start_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, in uart_start_select() argument
440 const int max_fds = MIN(nfds, UART_NUM); in uart_start_select()