/external/selinux/libsepol/cil/test/unit/ |
test_cil_list.c | 69 test_new_item->flavor = CIL_CLASS; 97 test_new_item->flavor = CIL_CLASS; 104 test_new_item->flavor = CIL_CLASS; 133 test_new_item->flavor = CIL_CLASS; 139 test_new_item->flavor = CIL_CLASS; 145 test_new_item->flavor = CIL_CLASS; 174 test_new_item->flavor = CIL_CLASS; 226 test_new_item->flavor = CIL_CLASS; 254 test_new_item->flavor = CIL_CLASS; 283 test_new_item->flavor = CIL_CLASS; [all...] |
test_cil.c | 88 test_ast_node->parent->flavor = CIL_CLASS;
|
test_cil_copy_ast.c | 183 struct cil_class *new_node; 189 new_tree_node->flavor = CIL_CLASS; 279 struct cil_class *test_cls; 288 test_ast_node->flavor = CIL_CLASS; [all...] |
test_cil_build_ast.c | 494 struct cil_class *new_node; 500 new_tree_node->flavor = CIL_CLASS; 575 struct cil_class *new_node; 581 new_tree_node->flavor = CIL_CLASS; 787 struct cil_class *test_cls; 796 test_ast_node->flavor = CIL_CLASS; 815 struct cil_class *test_cls; 826 test_ast_node->flavor = CIL_CLASS; 845 struct cil_class *test_cls; 854 test_ast_node->flavor = CIL_CLASS; [all...] |
/external/selinux/libsepol/cil/src/ |
cil_internal.h | 339 struct cil_class { struct 343 struct cil_class *common; /* Only used for kernel class */ 358 struct cil_class *class; 512 struct cil_class *obj; 526 struct cil_class *obj; 566 struct cil_class *obj; 577 struct cil_class *obj; 776 struct cil_class *class; 905 void cil_class_init(struct cil_class **class);
|
cil_flavor.h | 162 CIL_CLASS,
|
cil_reset_ast.c | 22 static void cil_reset_class(struct cil_class *class) 25 struct cil_class *common = class->common; 376 case CIL_CLASS:
|
cil_binary.h | 74 int cil_common_to_policydb(policydb_t *pdb, struct cil_class *cil_common, common_datum_t **common_out); 80 * @param[in] datum The cil_class datum. 84 int cil_class_to_policydb(policydb_t *pdb, struct cil_class *cil_class);
|
cil_resolve_ast.c | 152 struct cil_class *class; 159 class = (struct cil_class *)datum; 349 rule->obj = (struct cil_class*)obj_datum; 557 nametypetrans->obj = (struct cil_class*)obj_datum; 615 rangetrans->obj = (struct cil_class*)obj_datum; 655 struct cil_class *class = NULL; 656 struct cil_class *common = NULL; 672 class = (struct cil_class *)class_datum; 673 common = (struct cil_class *)common_datum; 696 struct cil_class *map = NULL [all...] |
cil_verify.c | 382 } else if (node->flavor == CIL_CLASS) { 383 struct cil_class *class = node->data; 1229 struct cil_class *class = node->data; 1232 struct cil_class *common = class->common; [all...] |
cil_binary.c | 243 if (FLAVOR(cp->class) == CIL_CLASS) { 244 cil_list_append(class_list, CIL_CLASS, cp->class); 270 static struct cil_list *cil_expand_class(struct cil_class *class) 274 cil_list_init(&class_list, CIL_CLASS); 276 if (FLAVOR(class) == CIL_CLASS) { 277 cil_list_append(class_list, CIL_CLASS, class); 285 int cil_common_to_policydb(policydb_t *pdb, struct cil_class *cil_common, common_datum_t **common_out) 339 struct cil_class *cil_class = curr_class->data; local 342 struct cil_tree_node *node = cil_class->datum.nodes->head->data [all...] |
cil_policy.c | 512 if (FLAVOR(cp->class) == CIL_CLASS) { 553 if (FLAVOR(cp->class) == CIL_CLASS) { 1071 fprintf(file_arr[CONSTRAINS], " %s ", ((struct cil_class*)vt->class)->datum.name); 1079 fprintf(file_arr[CONSTRAINS], " %s " , ((struct cil_class*)vt->class)->datum.name); [all...] |
cil.c | 521 case CIL_CLASS: 776 case CIL_CLASS: 896 case CIL_CLASS: [all...] |
cil_tree.c | 793 case CIL_CLASS: { 794 struct cil_class *cls = node->data; 824 struct cil_class *common = node->data; 860 struct cil_class *cm = node->data; [all...] |
cil_build_ast.h | 52 void cil_destroy_class(struct cil_class *class);
|
cil_post.c | [all...] |
cil_build_ast.c | 356 struct cil_class *class = NULL; 369 rc = cil_gen_node(db, ast_node, (struct cil_symtab_datum*)class, (hashtab_key_t)key, CIL_SYM_CLASSES, CIL_CLASS); 392 void cil_destroy_class(struct cil_class *class) 807 struct cil_class *map = NULL; 905 struct cil_class *common = NULL; [all...] |
cil_copy_ast.c | 235 struct cil_class *orig = data; 236 struct cil_class *new = NULL; [all...] |