Home
last modified time | relevance | path

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

/tools/include/nolibc/
A Dsys.h783 int sys_select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in sys_select() argument
790 } arg = { .n = nfds, .r = rfds, .w = wfds, .e = efds, .t = timeout }; in sys_select()
793 return my_syscall5(__NR__newselect, nfds, rfds, wfds, efds, timeout); in sys_select()
795 return my_syscall5(__NR_select, nfds, rfds, wfds, efds, timeout); in sys_select()
803 return my_syscall6(__NR_pselect6, nfds, rfds, wfds, efds, timeout ? &t : NULL, NULL); in sys_select()
811 return my_syscall6(__NR_pselect6_time64, nfds, rfds, wfds, efds, timeout ? &t : NULL, NULL); in sys_select()
813 return __nolibc_enosys(__func__, nfds, rfds, wfds, efds, timeout); in sys_select()
818 int select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in select() argument
820 return __sysret(sys_select(nfds, rfds, wfds, efds, timeout)); in select()
/tools/testing/selftests/x86/
A Dtest_syscall_vdso.c174 fd_set efds; variable
187 FD_ZERO(&efds); in prep_args()
190 FD_SET(2, &efds); in prep_args()
/tools/testing/selftests/net/tcp_ao/
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()
/tools/testing/selftests/net/tcp_ao/lib/
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()

Completed in 11 milliseconds