Searched refs:wfds (Results 1 – 4 of 4) sorted by relevance
/linux-6.1.9/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()
|
/linux-6.1.9/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()
|
/linux-6.1.9/tools/include/nolibc/ |
D | sys.h | 942 int sys_select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in sys_select() argument 949 } arg = { .n = nfds, .r = rfds, .w = wfds, .e = efds, .t = timeout }; in sys_select() 958 return my_syscall6(__NR_pselect6, nfds, rfds, wfds, efds, timeout ? &t : NULL, NULL); in sys_select() 963 return my_syscall5(__NR__newselect, nfds, rfds, wfds, efds, timeout); in sys_select() 970 int select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in select() argument 972 int ret = sys_select(nfds, rfds, wfds, efds, timeout); in select()
|
/linux-6.1.9/tools/testing/selftests/bpf/prog_tests/ |
D | tc_redirect.c | 959 fd_set rfds, wfds; in tun_relay_loop() local 962 FD_ZERO(&wfds); in tun_relay_loop()
|