Home | History | Annotate | Download | only in src

Lines Matching defs:is_type

178 	int is_type;
727 static char *get_new_attr_name(struct policydb *pdb, int is_type)
736 if (is_type) {
761 static int cil_add_attr_to_list(struct list *attr_list, char *attr_name, int is_type, void *set)
779 attr_list_node->is_type = is_type;
789 static int cil_print_attr_strs(int indent, struct policydb *pdb, int is_type, void *set, char *attr_name)
809 if (is_type) {
890 rc = cil_print_attr_strs(indent, pdb, node->is_type, node->set, node->attr_name);
899 static char *search_attr_list(struct list *attr_list, int is_type, void *set)
906 if (is_type) {
914 if (node->is_type != is_type)
938 static int set_to_names(struct policydb *pdb, int is_type, void *set, struct list *attr_list, char ***names, int *num_names)
946 attr_name = search_attr_list(attr_list, is_type, set);
949 attr_name = get_new_attr_name(pdb, is_type);
955 rc = cil_add_attr_to_list(attr_list, attr_name, is_type, set);