Lines Matching refs:FDSet
20 #define MAKE_FDSET(s) ((FDSet*) s)
22 FDSet *fdset_new(void) { in fdset_new()
26 int fdset_new_array(FDSet **ret, const int *fds, size_t n_fds) { in fdset_new_array()
28 FDSet *s; in fdset_new_array()
50 void fdset_close(FDSet *s) { in fdset_close()
67 FDSet* fdset_free(FDSet *s) { in fdset_free()
73 int fdset_put(FDSet *s, int fd) { in fdset_put()
80 int fdset_put_dup(FDSet *s, int fd) { in fdset_put_dup()
99 bool fdset_contains(FDSet *s, int fd) { in fdset_contains()
106 int fdset_remove(FDSet *s, int fd) { in fdset_remove()
113 int fdset_new_fill(FDSet **_s) { in fdset_new_fill()
116 FDSet *s; in fdset_new_fill()
162 int fdset_cloexec(FDSet *fds, bool b) { in fdset_cloexec()
177 int fdset_new_listen_fds(FDSet **_s, bool unset) { in fdset_new_listen_fds()
179 FDSet *s; in fdset_new_listen_fds()
208 int fdset_close_others(FDSet *fds) { in fdset_close_others()
226 unsigned fdset_size(FDSet *fds) { in fdset_size()
230 bool fdset_isempty(FDSet *fds) { in fdset_isempty()
234 int fdset_iterate(FDSet *s, Iterator *i) { in fdset_iterate()
243 int fdset_steal_first(FDSet *fds) { in fdset_steal_first()