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

  /external/selinux/libsepol/cil/src/
cil_tree.c 706 struct cil_roletype *roletype = node->data; local
708 cil_log(CIL_INFO, "ROLETYPE:");
710 if (roletype->role != NULL) {
711 datum = roletype->role;
713 } else if (roletype->role_str != NULL) {
714 cil_log(CIL_INFO, " %s", roletype->role_str);
717 if (roletype->type != NULL) {
718 datum = roletype->type;
720 } else if (roletype->type_str != NULL) {
721 cil_log(CIL_INFO, " %s", roletype->type_str)
    [all...]
cil.c 167 CIL_KEY_ROLETYPE = cil_strpool_add("roletype");
    [all...]
cil_post.c 1307 struct cil_roletype *roletype = node->data; local
    [all...]
cil_policy.c 1050 struct cil_roletype *roletype = (struct cil_roletype*)current->data; local
1051 char *role_str = ((struct cil_symtab_datum*)roletype->role)->name;
1052 char *type_str = ((struct cil_symtab_datum*)roletype->type)->name;
    [all...]
cil_build_ast.h 100 void cil_destroy_roletype(struct cil_roletype *roletype);
cil_internal.h 960 void cil_roletype_init(struct cil_roletype **roletype);
cil_build_ast.c 1697 struct cil_roletype *roletype = NULL; local
    [all...]
cil_resolve_ast.c 976 struct cil_roletype *roletype = current->data; local
981 rc = cil_resolve_name(current, roletype->role_str, CIL_SYM_ROLES, extra_args, &role_datum);
985 roletype->role = (struct cil_role*)role_datum;
987 rc = cil_resolve_name(current, roletype->type_str, CIL_SYM_TYPES, extra_args, &type_datum);
991 roletype->type = (struct cil_type*)type_datum;
    [all...]

Completed in 246 milliseconds