Lines Matching refs:entry

165 			struct tomoyo_path_acl *entry  in tomoyo_del_acl()  local
166 = container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
167 tomoyo_put_name_union(&entry->name); in tomoyo_del_acl()
172 struct tomoyo_path2_acl *entry in tomoyo_del_acl() local
173 = container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
174 tomoyo_put_name_union(&entry->name1); in tomoyo_del_acl()
175 tomoyo_put_name_union(&entry->name2); in tomoyo_del_acl()
180 struct tomoyo_path_number_acl *entry in tomoyo_del_acl() local
181 = container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
182 tomoyo_put_name_union(&entry->name); in tomoyo_del_acl()
183 tomoyo_put_number_union(&entry->number); in tomoyo_del_acl()
188 struct tomoyo_mkdev_acl *entry in tomoyo_del_acl() local
189 = container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
190 tomoyo_put_name_union(&entry->name); in tomoyo_del_acl()
191 tomoyo_put_number_union(&entry->mode); in tomoyo_del_acl()
192 tomoyo_put_number_union(&entry->major); in tomoyo_del_acl()
193 tomoyo_put_number_union(&entry->minor); in tomoyo_del_acl()
198 struct tomoyo_mount_acl *entry in tomoyo_del_acl() local
199 = container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
200 tomoyo_put_name_union(&entry->dev_name); in tomoyo_del_acl()
201 tomoyo_put_name_union(&entry->dir_name); in tomoyo_del_acl()
202 tomoyo_put_name_union(&entry->fs_type); in tomoyo_del_acl()
203 tomoyo_put_number_union(&entry->flags); in tomoyo_del_acl()
208 struct tomoyo_env_acl *entry = in tomoyo_del_acl() local
209 container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
211 tomoyo_put_name(entry->env); in tomoyo_del_acl()
216 struct tomoyo_inet_acl *entry = in tomoyo_del_acl() local
217 container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
219 tomoyo_put_group(entry->address.group); in tomoyo_del_acl()
220 tomoyo_put_number_union(&entry->port); in tomoyo_del_acl()
225 struct tomoyo_unix_acl *entry = in tomoyo_del_acl() local
226 container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
228 tomoyo_put_name_union(&entry->name); in tomoyo_del_acl()
233 struct tomoyo_task_acl *entry = in tomoyo_del_acl() local
234 container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
236 tomoyo_put_name(entry->domainname); in tomoyo_del_acl()
439 head.list)->entry.name)) in tomoyo_try_to_gc()