Home
last modified time | relevance | path

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

/xnu-12377.1.9/bsd/netinet/ !
H A Dicmp6.h638 #define ICMP6_FILTER_SETPASSALL(filterp) \ argument
639 memset(filterp, 0xff, sizeof(struct icmp6_filter))
640 #define ICMP6_FILTER_SETBLOCKALL(filterp) \ argument
641 memset(filterp, 0x00, sizeof(struct icmp6_filter))
643 #define ICMP6_FILTER_SETPASS(type, filterp) \ argument
644 (((filterp)->icmp6_filt[(type) >> 5]) |= (1u << ((type) & 31)))
645 #define ICMP6_FILTER_SETBLOCK(type, filterp) \ argument
646 (((filterp)->icmp6_filt[(type) >> 5]) &= ~(1u << ((type) & 31)))
647 #define ICMP6_FILTER_WILLPASS(type, filterp) \ argument
648 ((((filterp)->icmp6_filt[(type) >> 5]) & (1u << ((type) & 31))) != 0)
[all …]
/xnu-12377.1.9/iokit/IOKit/ !
H A DIOUserClient.h191 …ilter_resolver_t) (task_t task, IOUserClient * client, uint32_t type, io_filter_policy_t *filterp);