HomeSort by relevance Sort by last modified time
    Searched refs:clscom (Results 1 - 4 of 4) sorted by null

  /external/selinux/libsepol/cil/src/
cil_tree.c 851 struct cil_classcommon *clscom = node->data; local
853 cil_log(CIL_INFO, "CLASSCOMMON: class: %s, common: %s\n", clscom->class_str, clscom->common_str);
    [all...]
cil_build_ast.h 74 void cil_destroy_classcommon(struct cil_classcommon *clscom);
cil_build_ast.c 974 struct cil_classcommon *clscom = NULL; local
986 cil_classcommon_init(&clscom);
988 clscom->class_str = parse_current->next->data;
989 clscom->common_str = parse_current->next->next->data;
991 ast_node->data = clscom;
999 cil_destroy_classcommon(clscom);
1004 void cil_destroy_classcommon(struct cil_classcommon *clscom)
1006 if (clscom == NULL) {
1010 free(clscom);
    [all...]
cil_resolve_ast.c 692 struct cil_classcommon *clscom = current->data; local
697 rc = cil_resolve_name(current, clscom->class_str, CIL_SYM_CLASSES, extra_args, &class_datum);
702 rc = cil_resolve_name(current, clscom->common_str, CIL_SYM_COMMONS, extra_args, &common_datum);
    [all...]

Completed in 3902 milliseconds