Lines Matching refs:acl
259 const struct tomoyo_path_acl *acl = container_of(ptr, typeof(*acl),
262 if (acl->perm & (1 << r->param.path.operation)) {
265 &acl->name);
282 const struct tomoyo_path_number_acl *acl =
283 container_of(ptr, typeof(*acl), head);
285 return (acl->perm & (1 << r->param.path_number.operation)) &&
287 &acl->number) &&
289 &acl->name);
303 const struct tomoyo_path2_acl *acl =
304 container_of(ptr, typeof(*acl), head);
306 return (acl->perm & (1 << r->param.path2.operation)) &&
307 tomoyo_compare_name_union(r->param.path2.filename1, &acl->name1)
309 &acl->name2);
323 const struct tomoyo_mkdev_acl *acl =
324 container_of(ptr, typeof(*acl), head);
326 return (acl->perm & (1 << r->param.mkdev.operation)) &&
328 &acl->mode) &&
330 &acl->major) &&
332 &acl->minor) &&
334 &acl->name);