Home
last modified time | relevance | path

Searched refs:efds (Results 1 – 4 of 4) sorted by relevance

/linux/tools/include/nolibc/sys/
H A Dselect.h64 int sys_select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in sys_select() argument
73 return my_syscall6(__NR_pselect6_time64, nfds, rfds, wfds, efds, timeout ? &t : NULL, NULL); in sys_select()
81 return my_syscall6(__NR_pselect6, nfds, rfds, wfds, efds, timeout ? &t : NULL, NULL); in sys_select()
86 int select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in sys_select()
88 return __sysret(sys_select(nfds, rfds, wfds, efds, timeout)); in sys_select()
97 select(int nfds,fd_set * rfds,fd_set * wfds,fd_set * efds,struct timeval * timeout) select() argument
/linux/tools/testing/selftests/net/tcp_ao/
H A Drst.c214 fd_set fds, efds; in test_wait_fds() local
218 FD_ZERO(&efds); in test_wait_fds()
227 FD_SET(sk[i], &efds); in test_wait_fds()
234 ret = select(nfd + 1, NULL, &fds, &efds, ptv); in test_wait_fds()
247 if (FD_ISSET(sk[i], &efds)) { in test_wait_fds()
/linux/tools/testing/selftests/x86/
H A Dtest_syscall_vdso.c174 fd_set efds; variable
187 FD_ZERO(&efds); in prep_args()
190 FD_SET(2, &efds); in prep_args()
/linux/tools/testing/selftests/net/tcp_ao/lib/
H A Dsock.c39 fd_set fds, efds; in __test_wait_fd() local
45 FD_ZERO(&efds); in __test_wait_fd()
46 FD_SET(sk, &efds); in __test_wait_fd()
50 ret = select(sk + 1, NULL, &fds, &efds, tv); in __test_wait_fd()
52 ret = select(sk + 1, &fds, NULL, &efds, tv); in __test_wait_fd()