Searched refs:nfds (Results 1 – 10 of 10) sorted by relevance
/hal_espressif-2.7.6/tools/test_idf_monitor/tests/ |
D | in2f2.txt | 2 D (59342) vfs: esp_vfs_select starts with nfds = 55[0m 12 D (59870) vfs: esp_vfs_select starts with nfds = 55[0m 22 D (60397) vfs: esp_vfs_select starts with nfds = 55[0m 32 D (60934) vfs: esp_vfs_select starts with nfds = 55[0m 42 D (61471) vfs: esp_vfs_select starts with nfds = 55[0m 52 D (62008) vfs: esp_vfs_select starts with nfds = 55[0m 62 D (62536) vfs: esp_vfs_select starts with nfds = 55[0m 72 D (63073) vfs: esp_vfs_select starts with nfds = 55[0m 82 D (63611) vfs: esp_vfs_select starts with nfds = 55[0m 92 D (64147) vfs: esp_vfs_select starts with nfds = 55[0m [all …]
|
D | in2.txt | 189 D (59342) vfs: esp_vfs_select starts with nfds = 55[0m 204 D (59870) vfs: esp_vfs_select starts with nfds = 55[0m 214 D (60397) vfs: esp_vfs_select starts with nfds = 55[0m 225 D (60934) vfs: esp_vfs_select starts with nfds = 55[0m 235 D (61471) vfs: esp_vfs_select starts with nfds = 55[0m 245 D (62008) vfs: esp_vfs_select starts with nfds = 55[0m 255 D (62536) vfs: esp_vfs_select starts with nfds = 55[0m 265 D (63073) vfs: esp_vfs_select starts with nfds = 55[0m 275 D (63611) vfs: esp_vfs_select starts with nfds = 55[0m 285 D (64147) vfs: esp_vfs_select starts with nfds = 55[0m [all …]
|
/hal_espressif-2.7.6/components/newlib/ |
D | poll.c | 21 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/ |
D | vfs_lwip.c | 56 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()
|
D | no_vfs_syscalls.c | 75 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/ |
D | poll.h | 42 int poll(struct pollfd *fds, nfds_t nfds, int timeout);
|
D | select.h | 29 int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *timeout);
|
/hal_espressif-2.7.6/components/vfs/include/ |
D | esp_vfs.h | 243 …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/ |
D | vfs.c | 844 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)
|
D | vfs_uart.c | 437 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()
|