Lines Matching refs:fds
21 int fdset_new_array(FDSet **ret, const int *fds, size_t n_fds);
25 int fdset_cloexec(FDSet *fds, bool b);
27 int fdset_close_others(FDSet *fds);
29 unsigned fdset_size(FDSet *fds);
30 bool fdset_isempty(FDSet *fds);
34 int fdset_steal_first(FDSet *fds);
36 void fdset_close(FDSet *fds);
38 #define _FDSET_FOREACH(fd, fds, i) \ argument
39 for (Iterator i = ITERATOR_FIRST; ((fd) = fdset_iterate((fds), &i)) >= 0; )
40 #define FDSET_FOREACH(fd, fds) \ argument
41 _FDSET_FOREACH(fd, fds, UNIQ_T(i, UNIQ))