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 948 struct cil_classcommon *clscom = node->data; local
950 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 978 struct cil_classcommon *clscom = NULL; local
990 cil_classcommon_init(&clscom);
992 clscom->class_str = parse_current->next->data;
993 clscom->common_str = parse_current->next->next->data;
995 ast_node->data = clscom;
1002 cil_destroy_classcommon(clscom);
1007 void cil_destroy_classcommon(struct cil_classcommon *clscom)
1009 if (clscom == NULL) {
1013 free(clscom);
    [all...]
cil_resolve_ast.c 746 struct cil_classcommon *clscom = current->data; local
751 rc = cil_resolve_name(current, clscom->class_str, CIL_SYM_CLASSES, extra_args, &class_datum);
756 rc = cil_resolve_name(current, clscom->common_str, CIL_SYM_COMMONS, extra_args, &common_datum);
    [all...]

Completed in 429 milliseconds