/external/selinux/python/audit2allow/ |
D | test_dummy_policy.cil | 37 (roletype system_r automount_t) 38 (roletype system_r ftpd_t) 39 (roletype system_r httpd_t) 40 (roletype system_r kernel_t) 41 (roletype system_r postfix_local_t) 42 (roletype system_r qemu_t) 43 (roletype system_r smbd_t) 44 (roletype unconfined_r nsplugin_t)
|
/external/selinux/secilc/test/ |
D | policy.cil | 212 (roletype system_r bin_t) 213 (roletype system_r kernel_t) 214 (roletype system_r security_t) 215 (roletype system_r unlabeled_t) 216 (roletype system_r exec_type) 217 (roletype exec_role bin_t) 218 (roletype exec_role exec_type) 332 (roletype r t)
|
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 | in_test.cil | 15 (roletype ROLE TYPE)
|
D | name_resolution_test.cil | 15 (roletype ROLE TYPE)
|
D | bounds.cil | 14 (roletype ROLE TYPE)
|
/external/selinux/secilc/docs/ |
D | cil_role_statements.md | 42 roletype section in Role Statements 60 <td align="left"><p><code>roletype</code></p></td> 61 <td align="left"><p>The <code>roletype</code> keyword.</p></td> 81 (roletype role process) 268 (roletype msg_filter.role process)
|
D | cil_file_labeling_statements.md | 152 (roletype object_r labeledfs) 156 (roletype object_r pipefs) 212 (roletype object_r rootfs) 216 (roletype object_r proc)
|
D | README.md | 111 * [roletype](cil_role_statements.md#roletype)
|
D | cil_mls_labeling_statements.md | 573 (roletype role process) 574 (roletype role object) 575 (roletype object_r object)
|
D | cil_container_statements.md | 149 (roletype object_r log_file)
|
/external/selinux/libsepol/cil/src/ |
D | cil_tree.c | 807 struct cil_roletype *roletype = node->data; in cil_tree_print_node() local 811 if (roletype->role != NULL) { in cil_tree_print_node() 812 datum = roletype->role; in cil_tree_print_node() 814 } else if (roletype->role_str != NULL) { in cil_tree_print_node() 815 cil_log(CIL_INFO, " %s", roletype->role_str); in cil_tree_print_node() 818 if (roletype->type != NULL) { in cil_tree_print_node() 819 datum = roletype->type; in cil_tree_print_node() 821 } else if (roletype->type_str != NULL) { in cil_tree_print_node() 822 cil_log(CIL_INFO, " %s", roletype->type_str); in cil_tree_print_node()
|
D | android.c | 362 struct cil_roletype *roletype = (struct cil_roletype *)node->data; in cil_attrib_roletype() local 364 if (roletype->role) { in cil_attrib_roletype() 368 key = roletype->type_str; in cil_attrib_roletype() 370 roletype->type_str = __cil_attrib_get_versname(key, args->num); in cil_attrib_roletype()
|
D | cil.c | 2030 void cil_roletype_init(struct cil_roletype **roletype) in cil_roletype_init() argument 2032 *roletype = cil_malloc(sizeof(**roletype)); in cil_roletype_init() 2034 (*roletype)->role_str = NULL; in cil_roletype_init() 2035 (*roletype)->role = NULL; in cil_roletype_init() 2036 (*roletype)->type_str = NULL; in cil_roletype_init() 2037 (*roletype)->type = NULL; in cil_roletype_init()
|
D | cil_post.c | 1647 struct cil_roletype *roletype = node->data; in __cil_post_db_roletype_helper() local 1648 struct cil_symtab_datum *role_datum = roletype->role; in __cil_post_db_roletype_helper() 1649 struct cil_symtab_datum *type_datum = roletype->type; in __cil_post_db_roletype_helper() 1653 struct cil_roleattribute *attr = roletype->role; in __cil_post_db_roletype_helper() 1672 struct cil_role *role = roletype->role; in __cil_post_db_roletype_helper()
|
D | cil_write_ast.c | 608 struct cil_roletype *roletype = (struct cil_roletype *)node->data; in cil_write_roletype() local 609 fprintf(cil_out, "(%s %s %s)\n", CIL_KEY_ROLETYPE, roletype->role_str, roletype->type_str); in cil_write_roletype()
|
D | cil_build_ast.h | 100 void cil_destroy_roletype(struct cil_roletype *roletype);
|
D | cil_build_ast.c | 1722 struct cil_roletype *roletype = NULL; in cil_gen_roletype() local 1734 cil_roletype_init(&roletype); in cil_gen_roletype() 1736 roletype->role_str = parse_current->next->data; in cil_gen_roletype() 1737 roletype->type_str = parse_current->next->next->data; in cil_gen_roletype() 1739 ast_node->data = roletype; in cil_gen_roletype() 1746 cil_destroy_roletype(roletype); in cil_gen_roletype() 1750 void cil_destroy_roletype(struct cil_roletype *roletype) in cil_destroy_roletype() argument 1752 if (roletype == NULL) { in cil_destroy_roletype() 1756 free(roletype); in cil_destroy_roletype()
|
D | cil_internal.h | 1009 void cil_roletype_init(struct cil_roletype **roletype);
|
/external/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)
|