Searched refs:_fd (Results 1 – 3 of 3) sorted by relevance
| /xnu-12377.61.12/bsd/sys/_types/ |
| H A D | _fd_def.h | 85 __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-12377.61.12/security/ |
| H A D | mac.h | 153 int __mac_get_fd(int _fd, mac_t _label);
|
| /xnu-12377.61.12/tests/vm/ |
| H A D | vm_stress.cpp | 145 Mapping(uint32_t _id, uint64_t _offset_in_pages, MappingArgs _args, uint32_t _fd) in Mapping() argument 146 …: id(_id), offset_in_pages(_offset_in_pages), args(_args), fd(_fd), lock(std::make_shared<std::sha… in Mapping()
|