Searched refs:_fd (Results 1 – 2 of 2) sorted by relevance
85 __darwin_fd_isset(int _fd, const struct fd_set *_p) in __darwin_fd_isset() argument87 if (__darwin_check_fd_set(_fd, (const void *) _p)) { in __darwin_fd_isset()88 …return _p->fds_bits[(unsigned long)_fd / __DARWIN_NFDBITS] & ((__int32_t)(((unsigned long)1) << ((… in __darwin_fd_isset()95 __darwin_fd_set(int _fd, struct fd_set *const _p) in __darwin_fd_set() argument97 if (__darwin_check_fd_set(_fd, (const void *) _p)) { in __darwin_fd_set()98 …(_p->fds_bits[(unsigned long)_fd / __DARWIN_NFDBITS] |= ((__int32_t)(((unsigned long)1) << ((unsig… in __darwin_fd_set()103 __darwin_fd_clr(int _fd, struct fd_set *const _p) in __darwin_fd_clr() argument105 if (__darwin_check_fd_set(_fd, (const void *) _p)) { in __darwin_fd_clr()106 …(_p->fds_bits[(unsigned long)_fd / __DARWIN_NFDBITS] &= ~((__int32_t)(((unsigned long)1) << ((unsi… in __darwin_fd_clr()113 __darwin_fd_isset(int _fd, const struct fd_set *_p)[all …]
153 int __mac_get_fd(int _fd, mac_t _label);