Lines Matching refs:p2
339 const struct tomoyo_path_acl *p2 = container_of(b, typeof(*p2), head); in tomoyo_same_path_acl() local
340 return tomoyo_same_name_union(&p1->name, &p2->name); in tomoyo_same_path_acl()
408 const struct tomoyo_mkdev_acl *p2 = container_of(b, typeof(*p2), head); in tomoyo_same_mkdev_acl() local
409 return tomoyo_same_name_union(&p1->name, &p2->name) && in tomoyo_same_mkdev_acl()
410 tomoyo_same_number_union(&p1->mode, &p2->mode) && in tomoyo_same_mkdev_acl()
411 tomoyo_same_number_union(&p1->major, &p2->major) && in tomoyo_same_mkdev_acl()
412 tomoyo_same_number_union(&p1->minor, &p2->minor); in tomoyo_same_mkdev_acl()
487 const struct tomoyo_path2_acl *p2 = container_of(b, typeof(*p2), head); in tomoyo_same_path2_acl() local
488 return tomoyo_same_name_union(&p1->name1, &p2->name1) && in tomoyo_same_path2_acl()
489 tomoyo_same_name_union(&p1->name2, &p2->name2); in tomoyo_same_path2_acl()
621 const struct tomoyo_path_number_acl *p2 = container_of(b, typeof(*p2), in tomoyo_same_path_number_acl() local
623 return tomoyo_same_name_union(&p1->name, &p2->name) && in tomoyo_same_path_number_acl()
624 tomoyo_same_number_union(&p1->number, &p2->number); in tomoyo_same_path_number_acl()
948 const struct tomoyo_mount_acl *p2 = container_of(b, typeof(*p2), head); in tomoyo_same_mount_acl() local
949 return tomoyo_same_name_union(&p1->dev_name, &p2->dev_name) && in tomoyo_same_mount_acl()
950 tomoyo_same_name_union(&p1->dir_name, &p2->dir_name) && in tomoyo_same_mount_acl()
951 tomoyo_same_name_union(&p1->fs_type, &p2->fs_type) && in tomoyo_same_mount_acl()
952 tomoyo_same_number_union(&p1->flags, &p2->flags); in tomoyo_same_mount_acl()