Lines Matching refs:a_type

422 	tmpacl.a_type = 0;  in convert_to_aclent_t()
426 is_obj = ((tmpacl.a_type == USER_OBJ) || in convert_to_aclent_t()
427 (tmpacl.a_type == GROUP_OBJ) || in convert_to_aclent_t()
428 (tmpacl.a_type == CLASS_OBJ) || in convert_to_aclent_t()
429 (tmpacl.a_type == DEF_USER_OBJ) || in convert_to_aclent_t()
430 (tmpacl.a_type == DEF_GROUP_OBJ) || in convert_to_aclent_t()
431 (tmpacl.a_type == DEF_OTHER_OBJ)); in convert_to_aclent_t()
448 if (taclp->a_type == tmpacl.a_type && in convert_to_aclent_t()
463 if (taclp->a_type == tmpacl.a_type && in convert_to_aclent_t()
500 switch (taclp->a_type) { in convert_to_aclent_t()
632 aclentp->a_type = DEF_USER; in parse_entry()
634 aclentp->a_type = USER; in parse_entry()
638 aclentp->a_type = DEF_GROUP; in parse_entry()
640 aclentp->a_type = GROUP; in parse_entry()
644 aclentp->a_type = DEF_CLASS_OBJ; in parse_entry()
646 aclentp->a_type = CLASS_OBJ; in parse_entry()
650 aclentp->a_type = DEF_OTHER_OBJ; in parse_entry()
652 aclentp->a_type = OTHER_OBJ; in parse_entry()
656 if (aclentp->a_type == 0) { in parse_entry()
663 if (aclentp->a_type != CLASS_OBJ && aclentp->a_type != OTHER_OBJ && in parse_entry()
664 aclentp->a_type != DEF_CLASS_OBJ && in parse_entry()
665 aclentp->a_type != DEF_OTHER_OBJ) { in parse_entry()
681 if (aclentp->a_type == USER) in parse_entry()
682 aclentp->a_type = USER_OBJ; in parse_entry()
683 if (aclentp->a_type == DEF_USER) in parse_entry()
684 aclentp->a_type = DEF_USER_OBJ; in parse_entry()
685 if (aclentp->a_type == GROUP) in parse_entry()
686 aclentp->a_type = GROUP_OBJ; in parse_entry()
687 if (aclentp->a_type == DEF_GROUP) in parse_entry()
688 aclentp->a_type = DEF_GROUP_OBJ; in parse_entry()
691 if (aclentp->a_type == USER || in parse_entry()
692 aclentp->a_type == USER_OBJ || in parse_entry()
693 aclentp->a_type == DEF_USER || in parse_entry()
694 aclentp->a_type == DEF_USER_OBJ) { in parse_entry()