Lines Matching defs:kfds
1503 * kfds points to an array in the kernel.
1506 kern_poll_kfds(struct thread *td, struct pollfd *kfds, u_int nfds,
1548 error = pollscan(td, kfds, nfds);
1615 struct pollfd *kfds;
1622 kfds = mallocarray(nfds, sizeof(*kfds), M_TEMP, M_WAITOK);
1624 kfds = stackfds;
1625 error = copyin(ufds, kfds, nfds * sizeof(*kfds));
1629 error = kern_poll_kfds(td, kfds, nfds, tsp, set);
1631 error = pollout(td, kfds, ufds, nfds);
1640 free(kfds, M_TEMP);