Lines Matching refs:member
134 struct tomoyo_path_group *member; in tomoyo_path_matches_group() local
136 list_for_each_entry_rcu(member, &group->member_list, head.list, in tomoyo_path_matches_group()
138 if (member->head.is_deleted) in tomoyo_path_matches_group()
140 if (!tomoyo_path_matches_pattern(pathname, member->member_name)) in tomoyo_path_matches_group()
142 return member->member_name; in tomoyo_path_matches_group()
162 struct tomoyo_number_group *member; in tomoyo_number_matches_group() local
165 list_for_each_entry_rcu(member, &group->member_list, head.list, in tomoyo_number_matches_group()
167 if (member->head.is_deleted) in tomoyo_number_matches_group()
169 if (min > member->number.values[1] || in tomoyo_number_matches_group()
170 max < member->number.values[0]) in tomoyo_number_matches_group()
192 struct tomoyo_address_group *member; in tomoyo_address_matches_group() local
196 list_for_each_entry_rcu(member, &group->member_list, head.list, in tomoyo_address_matches_group()
198 if (member->head.is_deleted) in tomoyo_address_matches_group()
200 if (member->address.is_ipv6 != is_ipv6) in tomoyo_address_matches_group()
202 if (memcmp(&member->address.ip[0], address, size) > 0 || in tomoyo_address_matches_group()
203 memcmp(address, &member->address.ip[1], size) > 0) in tomoyo_address_matches_group()