Lines Matching defs:acl
255 const struct tomoyo_path_acl *acl = container_of(ptr, typeof(*acl),
258 if (acl->perm & (1 << r->param.path.operation)) {
261 &acl->name);
278 const struct tomoyo_path_number_acl *acl =
279 container_of(ptr, typeof(*acl), head);
281 return (acl->perm & (1 << r->param.path_number.operation)) &&
283 &acl->number) &&
285 &acl->name);
299 const struct tomoyo_path2_acl *acl =
300 container_of(ptr, typeof(*acl), head);
302 return (acl->perm & (1 << r->param.path2.operation)) &&
303 tomoyo_compare_name_union(r->param.path2.filename1, &acl->name1)
305 &acl->name2);
319 const struct tomoyo_mkdev_acl *acl =
320 container_of(ptr, typeof(*acl), head);
322 return (acl->perm & (1 << r->param.mkdev.operation)) &&
324 &acl->mode) &&
326 &acl->major) &&
328 &acl->minor) &&
330 &acl->name);