Searched refs:wfds (Results 1 – 3 of 3) sorted by relevance
/kernel/linux/linux-5.10/tools/power/acpi/tools/acpidbg/ |
D | acpidbg.c | 268 fd_set wfds; in acpi_aml_loop() local 286 FD_ZERO(&wfds); in acpi_aml_loop() 298 maxfd = acpi_aml_set_fd(fd, maxfd, &wfds); in acpi_aml_loop() 304 maxfd = acpi_aml_set_fd(STDOUT_FILENO, maxfd, &wfds); in acpi_aml_loop() 306 ret = select(maxfd+1, &rfds, &wfds, NULL, &tv); in acpi_aml_loop() 314 if (FD_ISSET(fd, &wfds)) { in acpi_aml_loop() 326 if (FD_ISSET(STDOUT_FILENO, &wfds)) { in acpi_aml_loop()
|
/kernel/linux/linux-5.10/tools/testing/selftests/x86/ |
D | test_syscall_vdso.c | 173 fd_set wfds; variable 186 FD_ZERO(&wfds); in prep_args() 189 FD_SET(1, &wfds); in prep_args()
|
/kernel/linux/linux-5.10/tools/include/nolibc/ |
D | nolibc.h | 1660 int sys_select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in sys_select() argument 1667 } arg = { .n = nfds, .r = rfds, .w = wfds, .e = efds, .t = timeout }; in sys_select() 1676 return my_syscall6(__NR_pselect6, nfds, rfds, wfds, efds, timeout ? &t : NULL, NULL); in sys_select() 1681 return my_syscall5(__NR__newselect, nfds, rfds, wfds, efds, timeout); in sys_select() 2134 int select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in select() argument 2136 int ret = sys_select(nfds, rfds, wfds, efds, timeout); in select()
|