Home
last modified time | relevance | path

Searched refs:_fd (Results 1 – 2 of 2) sorted by relevance

/xnu-10002.1.13/bsd/sys/_types/
H A D_fd_def.h85 __darwin_fd_isset(int _fd, const struct fd_set *_p) in __darwin_fd_isset() argument
87 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() argument
97 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() argument
105 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 …]
/xnu-10002.1.13/security/
H A Dmac.h153 int __mac_get_fd(int _fd, mac_t _label);