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

  /external/selinux/libsepol/cil/src/
cil_binary.h 276 int cil_roletrans_to_policydb(policydb_t *pdb, const struct cil_db *db, struct cil_roletransition *roletrans, hashtab_t role_trans_table);
cil_tree.c 825 struct cil_roletransition *roletrans = node->data; local
828 if (roletrans->src != NULL) {
829 cil_log(CIL_INFO, " %s", roletrans->src->datum.name);
831 cil_log(CIL_INFO, " %s", roletrans->src_str);
834 if (roletrans->tgt != NULL) {
835 cil_log(CIL_INFO, " %s", ((struct cil_symtab_datum *)roletrans->tgt)->name);
837 cil_log(CIL_INFO, " %s", roletrans->tgt_str);
840 if (roletrans->obj != NULL) {
841 cil_log(CIL_INFO, " %s", roletrans->obj->datum.name);
843 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_resolve_ast.c 1059 struct cil_roletransition *roletrans = current->data; local
1067 rc = cil_resolve_name(current, roletrans->src_str, CIL_SYM_ROLES, extra_args, &src_datum);
1071 roletrans->src = (struct cil_role*)src_datum;
1073 rc = cil_resolve_name(current, roletrans->tgt_str, CIL_SYM_TYPES, extra_args, &tgt_datum);
1077 roletrans->tgt = tgt_datum;
1079 rc = cil_resolve_name(current, roletrans->obj_str, CIL_SYM_CLASSES, extra_args, &obj_datum);
1083 roletrans->obj = (struct cil_class*)obj_datum;
1085 rc = cil_resolve_name(current, roletrans->result_str, CIL_SYM_ROLES, extra_args, &result_datum);
1093 cil_log(CIL_ERR, "roletransition must result in a role, but %s is a %s\n", roletrans->result_str, cil_node_to_string(node));
1096 roletrans->result = (struct cil_role*)result_datum
    [all...]
cil_build_ast.h 104 void cil_destroy_roletransition(struct cil_roletransition *roletrans);
cil_internal.h 1004 void cil_roletransition_init(struct cil_roletransition **roletrans);
cil_build_ast.c 1782 struct cil_roletransition *roletrans = NULL; local
    [all...]
cil_binary.c     [all...]

Completed in 68 milliseconds