Lines Matching refs:p2
345 const struct tomoyo_path_acl *p2 = container_of(b, typeof(*p2), head); in tomoyo_same_path_acl() local
347 return tomoyo_same_name_union(&p1->name, &p2->name); in tomoyo_same_path_acl()
417 const struct tomoyo_mkdev_acl *p2 = container_of(b, typeof(*p2), head); in tomoyo_same_mkdev_acl() local
419 return tomoyo_same_name_union(&p1->name, &p2->name) && in tomoyo_same_mkdev_acl()
420 tomoyo_same_number_union(&p1->mode, &p2->mode) && in tomoyo_same_mkdev_acl()
421 tomoyo_same_number_union(&p1->major, &p2->major) && in tomoyo_same_mkdev_acl()
422 tomoyo_same_number_union(&p1->minor, &p2->minor); in tomoyo_same_mkdev_acl()
499 const struct tomoyo_path2_acl *p2 = container_of(b, typeof(*p2), head); in tomoyo_same_path2_acl() local
501 return tomoyo_same_name_union(&p1->name1, &p2->name1) && in tomoyo_same_path2_acl()
502 tomoyo_same_name_union(&p1->name2, &p2->name2); in tomoyo_same_path2_acl()
636 const struct tomoyo_path_number_acl *p2 = container_of(b, typeof(*p2), in tomoyo_same_path_number_acl() local
639 return tomoyo_same_name_union(&p1->name, &p2->name) && in tomoyo_same_path_number_acl()
640 tomoyo_same_number_union(&p1->number, &p2->number); in tomoyo_same_path_number_acl()
966 const struct tomoyo_mount_acl *p2 = container_of(b, typeof(*p2), head); in tomoyo_same_mount_acl() local
968 return tomoyo_same_name_union(&p1->dev_name, &p2->dev_name) && in tomoyo_same_mount_acl()
969 tomoyo_same_name_union(&p1->dir_name, &p2->dir_name) && in tomoyo_same_mount_acl()
970 tomoyo_same_name_union(&p1->fs_type, &p2->fs_type) && in tomoyo_same_mount_acl()
971 tomoyo_same_number_union(&p1->flags, &p2->flags); in tomoyo_same_mount_acl()