Searched refs:roletype (Results 1 – 25 of 25) sorted by relevance
/third_party/selinux/secilc/test/ |
D | opt-expected.cil | 46 (roletype rl01 tp01) 47 (roletype object_r tp01) 48 (roletype object_r tp02) 49 (roletype object_r tp04) 50 (roletype object_r tpr1) 51 (roletype object_r tpr2) 52 (roletype object_r tpr3) 53 (roletype object_r tpr4) 54 (roletype object_r tpr5)
|
D | opt-input.cil | 51 (roletype rl01 tp01) 52 (roletype object_r tp01) 53 (roletype object_r tp02) 54 (roletype object_r tp04) 55 (roletype object_r tpr1) 56 (roletype object_r tpr2) 57 (roletype object_r tpr3) 58 (roletype object_r tpr4) 59 (roletype object_r tpr5)
|
D | integration.cil | 141 (roletype system_r bin_t) 142 (roletype system_r kernel_t) 143 (roletype system_r security_t) 144 (roletype system_r unlabeled_t)
|
D | minimum.cil | 14 (roletype ROLE TYPE)
|
D | optional_test.cil | 15 (roletype ROLE TYPE)
|
D | neverallow.cil | 14 (roletype ROLE TYPE)
|
D | block_test.cil | 15 (roletype ROLE TYPE)
|
D | anonymous_arg_test.cil | 17 (roletype ROLE TYPE)
|
D | in_test.cil | 15 (roletype ROLE TYPE)
|
D | name_resolution_test.cil | 15 (roletype ROLE TYPE)
|
D | bounds.cil | 14 (roletype ROLE TYPE)
|
/third_party/selinux/secilc/docs/ |
D | cil_role_statements.md | 46 roletype section in Role Statements 66 <td align="left"><p><code>roletype</code></p></td> 67 <td align="left"><p>The <code>roletype</code> keyword.</p></td> 88 (roletype role process) 289 (roletype msg_filter.role process)
|
D | cil_file_labeling_statements.md | 163 (roletype object_r labeledfs) 167 (roletype object_r pipefs) 231 (roletype object_r rootfs) 235 (roletype object_r proc)
|
D | README.md | 111 * [roletype](cil_role_statements.md#roletype)
|
D | cil_mls_labeling_statements.md | 616 (roletype role process) 617 (roletype role object) 618 (roletype object_r object)
|
D | cil_container_statements.md | 174 (roletype object_r log_file)
|
/third_party/selinux/libsepol/cil/test/integration_testing/ |
D | nonmls.cil | 72 (roletype foo_r foo_t)
|
D | mls_policy.cil | 101 (roletype foo_r foo_t)
|
/third_party/selinux/libsepol/cil/src/ |
D | cil.c | 2286 void cil_roletype_init(struct cil_roletype **roletype) in cil_roletype_init() argument 2288 *roletype = cil_malloc(sizeof(**roletype)); in cil_roletype_init() 2290 (*roletype)->role_str = NULL; in cil_roletype_init() 2291 (*roletype)->role = NULL; in cil_roletype_init() 2292 (*roletype)->type_str = NULL; in cil_roletype_init() 2293 (*roletype)->type = NULL; in cil_roletype_init()
|
D | cil_write_ast.c | 1027 struct cil_roletype *roletype = node->data; in cil_write_ast_node() local 1029 fprintf(out, "%s ", datum_or_str(DATUM(roletype->role), roletype->role_str)); in cil_write_ast_node() 1030 fprintf(out, "%s", datum_or_str(DATUM(roletype->type), roletype->type_str)); in cil_write_ast_node()
|
D | cil_post.c | 1665 struct cil_roletype *roletype = node->data; in __cil_post_db_roletype_helper() local 1666 struct cil_symtab_datum *role_datum = roletype->role; in __cil_post_db_roletype_helper() 1667 struct cil_symtab_datum *type_datum = roletype->type; in __cil_post_db_roletype_helper() 1671 struct cil_roleattribute *attr = roletype->role; in __cil_post_db_roletype_helper() 1686 struct cil_role *role = roletype->role; in __cil_post_db_roletype_helper()
|
D | cil_build_ast.h | 102 void cil_destroy_roletype(struct cil_roletype *roletype);
|
D | cil_build_ast.c | 1786 struct cil_roletype *roletype = NULL; in cil_gen_roletype() local 1798 cil_roletype_init(&roletype); in cil_gen_roletype() 1800 roletype->role_str = parse_current->next->data; in cil_gen_roletype() 1801 roletype->type_str = parse_current->next->next->data; in cil_gen_roletype() 1803 ast_node->data = roletype; in cil_gen_roletype() 1810 cil_destroy_roletype(roletype); in cil_gen_roletype() 1814 void cil_destroy_roletype(struct cil_roletype *roletype) in cil_destroy_roletype() argument 1816 if (roletype == NULL) { in cil_destroy_roletype() 1820 free(roletype); in cil_destroy_roletype()
|
D | cil_internal.h | 1023 void cil_roletype_init(struct cil_roletype **roletype);
|
D | cil_resolve_ast.c | 1052 struct cil_roletype *roletype = current->data; in cil_resolve_roletype() local 1057 rc = cil_resolve_name(current, roletype->role_str, CIL_SYM_ROLES, extra_args, &role_datum); in cil_resolve_roletype() 1061 roletype->role = (struct cil_role*)role_datum; in cil_resolve_roletype() 1063 rc = cil_resolve_name(current, roletype->type_str, CIL_SYM_TYPES, extra_args, &type_datum); in cil_resolve_roletype() 1067 roletype->type = (struct cil_type*)type_datum; in cil_resolve_roletype()
|