Lines Matching refs:member
131 struct tomoyo_path_group *member; in tomoyo_path_matches_group() local
132 list_for_each_entry_rcu(member, &group->member_list, head.list) { in tomoyo_path_matches_group()
133 if (member->head.is_deleted) in tomoyo_path_matches_group()
135 if (!tomoyo_path_matches_pattern(pathname, member->member_name)) in tomoyo_path_matches_group()
137 return member->member_name; in tomoyo_path_matches_group()
157 struct tomoyo_number_group *member; in tomoyo_number_matches_group() local
159 list_for_each_entry_rcu(member, &group->member_list, head.list) { in tomoyo_number_matches_group()
160 if (member->head.is_deleted) in tomoyo_number_matches_group()
162 if (min > member->number.values[1] || in tomoyo_number_matches_group()
163 max < member->number.values[0]) in tomoyo_number_matches_group()
185 struct tomoyo_address_group *member; in tomoyo_address_matches_group() local
189 list_for_each_entry_rcu(member, &group->member_list, head.list) { in tomoyo_address_matches_group()
190 if (member->head.is_deleted) in tomoyo_address_matches_group()
192 if (member->address.is_ipv6 != is_ipv6) in tomoyo_address_matches_group()
194 if (memcmp(&member->address.ip[0], address, size) > 0 || in tomoyo_address_matches_group()
195 memcmp(address, &member->address.ip[1], size) > 0) in tomoyo_address_matches_group()