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

/linux-master/tools/testing/selftests/net/tcp_ao/
H A Drst.c214 fd_set fds, efds; local
218 FD_ZERO(&efds);
227 FD_SET(sk[i], &efds);
234 ret = select(nfd + 1, NULL, &fds, &efds, ptv);
247 if (FD_ISSET(sk[i], &efds)) {
/linux-master/tools/testing/selftests/x86/
H A Dtest_syscall_vdso.c174 fd_set efds; variable
187 FD_ZERO(&efds);
190 FD_SET(2, &efds);
261 " mov $efds, %%esi\n" /* esi arg4 */
280 " cmp $efds, %%esi\n" /* esi arg4 */
/linux-master/tools/include/nolibc/
H A Dsys.h962 int sys_select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) argument
969 } arg = { .n = nfds, .r = rfds, .w = wfds, .e = efds, .t = timeout };
972 return my_syscall5(__NR__newselect, nfds, rfds, wfds, efds, timeout);
974 return my_syscall5(__NR_select, nfds, rfds, wfds, efds, timeout);
982 return my_syscall6(__NR_pselect6, nfds, rfds, wfds, efds, timeout ? &t : NULL, NULL);
984 return __nolibc_enosys(__func__, nfds, rfds, wfds, efds, timeout);
989 int select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) argument
991 return __sysret(sys_select(nfds, rfds, wfds, efds, timeout));
/linux-master/tools/testing/selftests/net/tcp_ao/lib/
H A Dsock.c41 fd_set fds, efds; local
47 FD_ZERO(&efds);
48 FD_SET(sk, &efds);
55 ret = select(sk + 1, NULL, &fds, &efds, ptv);
57 ret = select(sk + 1, &fds, NULL, &efds, ptv);

Completed in 140 milliseconds