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

  /external/selinux/libsepol/cil/src/
cil_tree.c 814 struct cil_roletransition *roletrans = node->data; local
817 if (roletrans->src != NULL) {
818 cil_log(CIL_INFO, " %s", roletrans->src->datum.name);
820 cil_log(CIL_INFO, " %s", roletrans->src_str);
823 if (roletrans->tgt != NULL) {
824 cil_log(CIL_INFO, " %s", ((struct cil_symtab_datum *)roletrans->tgt)->name);
826 cil_log(CIL_INFO, " %s", roletrans->tgt_str);
829 if (roletrans->obj != NULL) {
830 cil_log(CIL_INFO, " %s", roletrans->obj->datum.name);
832 cil_log(CIL_INFO, " %s", roletrans->obj_str)
    [all...]
cil_verify.c 831 struct cil_roletransition *roletrans = NULL; local
836 roletrans = node->data;
837 ckey.key1 = (intptr_t)roletrans->src;
838 ckey.key2 = (intptr_t)roletrans->tgt;
839 ckey.key3 = (intptr_t)roletrans->obj;
    [all...]
cil_build_ast.c 1782 struct cil_roletransition *roletrans = NULL; local
    [all...]
cil_resolve_ast.c 1011 struct cil_roletransition *roletrans = current->data; local
1019 rc = cil_resolve_name(current, roletrans->src_str, CIL_SYM_ROLES, extra_args, &src_datum);
1023 roletrans->src = (struct cil_role*)src_datum;
1025 rc = cil_resolve_name(current, roletrans->tgt_str, CIL_SYM_TYPES, extra_args, &tgt_datum);
1029 roletrans->tgt = tgt_datum;
1031 rc = cil_resolve_name(current, roletrans->obj_str, CIL_SYM_CLASSES, extra_args, &obj_datum);
1035 roletrans->obj = (struct cil_class*)obj_datum;
1037 rc = cil_resolve_name(current, roletrans->result_str, CIL_SYM_ROLES, extra_args, &result_datum);
1045 cil_log(CIL_ERR, "roletransition must result in a role, but %s is a %s\n", roletrans->result_str, cil_node_to_string(node));
1048 roletrans->result = (struct cil_role*)result_datum
    [all...]

Completed in 505 milliseconds