Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/netinet/
H A Dicmp6.h601 #define ICMP6_FILTER_SETPASSALL(filterp) \ argument
604 ptr = (u_char *)filterp; \
608 #define ICMP6_FILTER_SETBLOCKALL(filterp) \ argument
609 bzero(filterp, sizeof(struct icmp6_filter))
611 #define ICMP6_FILTER_SETPASSALL(filterp) \ argument
612 memset(filterp, 0xff, sizeof(struct icmp6_filter))
613 #define ICMP6_FILTER_SETBLOCKALL(filterp) \ argument
614 memset(filterp, 0x00, sizeof(struct icmp6_filter))
617 #define ICMP6_FILTER_SETPASS(type, filterp) \ argument
618 (((filterp)->icmp6_filt[(type) >> 5]) |= (1 << ((type) & 31)))
[all …]
/xnu-8019.80.24/iokit/IOKit/
H A DIOUserClient.h178 …ilter_resolver_t) (task_t task, IOUserClient * client, uint32_t type, io_filter_policy_t *filterp);