Searched refs:filterp (Results 1 – 2 of 2) sorted by relevance
| /xnu-11215.81.4/bsd/netinet/ |
| H A D | icmp6.h | 623 #define ICMP6_FILTER_SETPASSALL(filterp) \ argument 624 memset(filterp, 0xff, sizeof(struct icmp6_filter)) 625 #define ICMP6_FILTER_SETBLOCKALL(filterp) \ argument 626 memset(filterp, 0x00, sizeof(struct icmp6_filter)) 628 #define ICMP6_FILTER_SETPASS(type, filterp) \ argument 629 (((filterp)->icmp6_filt[(type) >> 5]) |= (1u << ((type) & 31))) 630 #define ICMP6_FILTER_SETBLOCK(type, filterp) \ argument 631 (((filterp)->icmp6_filt[(type) >> 5]) &= ~(1u << ((type) & 31))) 632 #define ICMP6_FILTER_WILLPASS(type, filterp) \ argument 633 ((((filterp)->icmp6_filt[(type) >> 5]) & (1u << ((type) & 31))) != 0) [all …]
|
| /xnu-11215.81.4/iokit/IOKit/ |
| H A D | IOUserClient.h | 191 …ilter_resolver_t) (task_t task, IOUserClient * client, uint32_t type, io_filter_policy_t *filterp);
|