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

  /external/selinux/libsepol/cil/src/
cil_tree.c 844 struct cil_roleallow *roleallow = node->data; local
845 cil_log(CIL_INFO, "ROLEALLOW:");
847 if (roleallow->src != NULL) {
848 cil_log(CIL_INFO, " %s", ((struct cil_symtab_datum*)roleallow->src)->name);
850 cil_log(CIL_INFO, " %s", roleallow->src_str);
853 if (roleallow->tgt != NULL) {
854 cil_log(CIL_INFO, " %s", ((struct cil_symtab_datum*)roleallow->tgt)->name);
856 cil_log(CIL_INFO, " %s", roleallow->tgt_str);
    [all...]
cil_build_ast.c 1830 struct cil_roleallow *roleallow = NULL; local
    [all...]
cil_resolve_ast.c 1058 struct cil_roleallow *roleallow = current->data; local
1063 rc = cil_resolve_name(current, roleallow->src_str, CIL_SYM_ROLES, extra_args, &src_datum);
1067 roleallow->src = (struct cil_role*)src_datum;
1069 rc = cil_resolve_name(current, roleallow->tgt_str, CIL_SYM_ROLES, extra_args, &tgt_datum);
1073 roleallow->tgt = (struct cil_role*)tgt_datum;
    [all...]

Completed in 781 milliseconds