Lines Matching defs:address
63 return tomoyo_same_ipaddr_union(&p1->address, &p2->address);
109 !tomoyo_parse_ipaddr_union(param, &e.address))
179 * tomoyo_address_matches_group - Check whether the given address matches members of the given address group.
181 * @is_ipv6: True if @address is an IPv6 address.
182 * @address: An IPv4 or IPv6 address.
185 * Returns true if @address matches addresses in @group group, false otherwise.
189 bool tomoyo_address_matches_group(const bool is_ipv6, const __be32 *address,
200 if (member->address.is_ipv6 != is_ipv6)
202 if (memcmp(&member->address.ip[0], address, size) > 0 ||
203 memcmp(address, &member->address.ip[1], size) > 0)