Lines Matching refs:entry

158 			struct tomoyo_path_acl *entry  in tomoyo_del_acl()  local
159 = container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
160 tomoyo_put_name_union(&entry->name); in tomoyo_del_acl()
165 struct tomoyo_path2_acl *entry in tomoyo_del_acl() local
166 = container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
167 tomoyo_put_name_union(&entry->name1); in tomoyo_del_acl()
168 tomoyo_put_name_union(&entry->name2); in tomoyo_del_acl()
173 struct tomoyo_path_number_acl *entry in tomoyo_del_acl() local
174 = container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
175 tomoyo_put_name_union(&entry->name); in tomoyo_del_acl()
176 tomoyo_put_number_union(&entry->number); in tomoyo_del_acl()
181 struct tomoyo_mkdev_acl *entry in tomoyo_del_acl() local
182 = container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
183 tomoyo_put_name_union(&entry->name); in tomoyo_del_acl()
184 tomoyo_put_number_union(&entry->mode); in tomoyo_del_acl()
185 tomoyo_put_number_union(&entry->major); in tomoyo_del_acl()
186 tomoyo_put_number_union(&entry->minor); in tomoyo_del_acl()
191 struct tomoyo_mount_acl *entry in tomoyo_del_acl() local
192 = container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
193 tomoyo_put_name_union(&entry->dev_name); in tomoyo_del_acl()
194 tomoyo_put_name_union(&entry->dir_name); in tomoyo_del_acl()
195 tomoyo_put_name_union(&entry->fs_type); in tomoyo_del_acl()
196 tomoyo_put_number_union(&entry->flags); in tomoyo_del_acl()
201 struct tomoyo_env_acl *entry = in tomoyo_del_acl() local
202 container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
204 tomoyo_put_name(entry->env); in tomoyo_del_acl()
209 struct tomoyo_inet_acl *entry = in tomoyo_del_acl() local
210 container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
212 tomoyo_put_group(entry->address.group); in tomoyo_del_acl()
213 tomoyo_put_number_union(&entry->port); in tomoyo_del_acl()
218 struct tomoyo_unix_acl *entry = in tomoyo_del_acl() local
219 container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
221 tomoyo_put_name_union(&entry->name); in tomoyo_del_acl()
226 struct tomoyo_task_acl *entry = in tomoyo_del_acl() local
227 container_of(acl, typeof(*entry), head); in tomoyo_del_acl()
228 tomoyo_put_name(entry->domainname); in tomoyo_del_acl()
427 head.list)->entry.name)) in tomoyo_try_to_gc()