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

  /external/selinux/libsepol/cil/src/
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_post.c 1089 struct cil_roletype *roletype = node->data; local
1090 struct cil_symtab_datum *role_datum = roletype->role;
1091 struct cil_symtab_datum *type_datum = roletype->type;
1095 struct cil_roleattribute *attr = roletype->role;
1114 struct cil_role *role = roletype->role;
    [all...]
cil_tree.c 703 struct cil_roletype *roletype = node->data; local
705 cil_log(CIL_INFO, "ROLETYPE:");
707 if (roletype->role != NULL) {
708 datum = roletype->role;
710 } else if (roletype->role_str != NULL) {
711 cil_log(CIL_INFO, " %s", roletype->role_str);
714 if (roletype->type != NULL) {
715 datum = roletype->type;
717 } else if (roletype->type_str != NULL) {
718 cil_log(CIL_INFO, " %s", roletype->type_str)
    [all...]
cil_build_ast.c 1542 struct cil_roletype *roletype = NULL; local
    [all...]
cil_resolve_ast.c 908 struct cil_roletype *roletype = current->data; local
913 rc = cil_resolve_name(current, roletype->role_str, CIL_SYM_ROLES, extra_args, &role_datum);
917 roletype->role = (struct cil_role*)role_datum;
919 rc = cil_resolve_name(current, roletype->type_str, CIL_SYM_TYPES, extra_args, &type_datum);
923 roletype->type = (struct cil_type*)type_datum;
    [all...]

Completed in 45 milliseconds