Lines Matching refs:group
3 * security/tomoyo/group.c
70 * @type: Type of this group.
76 struct tomoyo_group *group = tomoyo_get_group(param, type);
79 if (!group)
81 param->list = &group->member_list;
115 tomoyo_put_group(group);
120 * tomoyo_path_matches_group - Check whether the given pathname matches members of the given pathname group.
123 * @group: Pointer to "struct tomoyo_path_group".
125 * Returns matched member's pathname if @pathname matches pathnames in @group,
132 const struct tomoyo_group *group)
136 list_for_each_entry_rcu(member, &group->member_list, head.list,
148 * tomoyo_number_matches_group - Check whether the given number matches members of the given number group.
152 * @group: Pointer to "struct tomoyo_number_group".
154 * Returns true if @min and @max partially overlaps @group, false otherwise.
160 const struct tomoyo_group *group)
165 list_for_each_entry_rcu(member, &group->member_list, head.list,
179 * tomoyo_address_matches_group - Check whether the given address matches members of the given address group.
183 * @group: Pointer to "struct tomoyo_address_group".
185 * Returns true if @address matches addresses in @group group, false otherwise.
190 const struct tomoyo_group *group)
196 list_for_each_entry_rcu(member, &group->member_list, head.list,