Searched refs:efds (Results 1 – 4 of 4) sorted by relevance
/linux/tools/include/nolibc/ |
H A D | sys.h | 783 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()
|
/linux/tools/testing/selftests/net/tcp_ao/ |
H A D | rst.c | 214 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 D | test_syscall_vdso.c | 174 fd_set efds; variable 187 FD_ZERO(&efds); in prep_args() 190 FD_SET(2, &efds); in prep_args() 261 " mov $efds, %%esi\n" /* esi arg4 */ in run_syscall() 280 " cmp $efds, %%esi\n" /* esi arg4 */ in run_syscall()
|
/linux/tools/testing/selftests/net/tcp_ao/lib/ |
H A D | sock.c | 39 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()
|