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()
137 if (member->head.is_deleted) in tomoyo_path_matches_group()
139 if (!tomoyo_path_matches_pattern(pathname, member->member_name)) in tomoyo_path_matches_group()
141 return member->member_name; in tomoyo_path_matches_group()
161 struct tomoyo_number_group *member; in tomoyo_number_matches_group() local
164 list_for_each_entry_rcu(member, &group->member_list, head.list) { in tomoyo_number_matches_group()
165 if (member->head.is_deleted) in tomoyo_number_matches_group()
167 if (min > member->number.values[1] || in tomoyo_number_matches_group()
168 max < member->number.values[0]) in tomoyo_number_matches_group()
190 struct tomoyo_address_group *member; in tomoyo_address_matches_group() local
194 list_for_each_entry_rcu(member, &group->member_list, head.list) { in tomoyo_address_matches_group()
195 if (member->head.is_deleted) in tomoyo_address_matches_group()
197 if (member->address.is_ipv6 != is_ipv6) in tomoyo_address_matches_group()
199 if (memcmp(&member->address.ip[0], address, size) > 0 || in tomoyo_address_matches_group()
200 memcmp(address, &member->address.ip[1], size) > 0) in tomoyo_address_matches_group()