Searched defs:bounds_id (Results 1 - 2 of 2) sorted by relevance

/external/selinux/checkpolicy/
H A Dmodule_compiler.c219 char *bounds_id, *delim; local
225 bounds_id = strdup(role_id);
226 if (!bounds_id) {
230 bounds_id[(size_t)(delim - role_id)] = '\0';
232 bounds = hashtab_search(roles_tab, bounds_id);
235 bounds_id, role_id);
243 role_id, bounds_id,
247 free(bounds_id);
464 char *bounds_id, *delim; local
470 bounds_id
[all...]
H A Dpolicy_define.c1304 static int define_typebounds_helper(char *bounds_id, char *type_id) argument
1308 if (!is_id_in_scope(SYM_TYPES, bounds_id)) {
1309 yyerror2("type %s is not within scope", bounds_id);
1313 bounds = hashtab_search(policydbp->p_types.table, bounds_id);
1315 yyerror2("hoge unknown type %s", bounds_id);

Completed in 221 milliseconds