Searched refs:ufds (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/ofed/libibumad/
H A Dumad.c832 struct pollfd ufds; local
835 ufds.fd = fd;
836 ufds.events = POLLIN;
838 if ((n = poll(&ufds, 1, timeout_ms)) == 1)
/freebsd-13-stable/sys/kern/
H A Dsys_generic.c1421 kern_poll(struct thread *td, struct pollfd *ufds, u_int nfds, argument
1469 error = copyin(ufds, kfds, nfds * sizeof(*kfds));
1511 error = pollout(td, kfds, ufds, nfds);
1601 pollout(struct thread *td, struct pollfd *fds, struct pollfd *ufds, u_int nfd) argument
1608 error = copyout(&fds->revents, &ufds->revents,
1609 sizeof(ufds->revents));
1615 ufds++;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h1183 #define __sanitizer_syscall_pre_poll(ufds, nfds, timeout) \
1184 __sanitizer_syscall_pre_impl_poll((long)(ufds), (long)(nfds), (long)(timeout))
1185 #define __sanitizer_syscall_post_poll(res, ufds, nfds, timeout) \
1186 __sanitizer_syscall_post_impl_poll(res, (long)(ufds), (long)(nfds), \
2675 void __sanitizer_syscall_pre_impl_poll(long ufds, long nfds, long timeout);
2676 void __sanitizer_syscall_post_impl_poll(long res, long ufds, long nfds,

Completed in 170 milliseconds