Home
last modified time | relevance | path

Searched refs:obj_str (Results 1 – 11 of 11) sorted by relevance

/external/skia/tools/
Dmerge_static_libs.py34 obj_str = proc.communicate()[0]
35 current_objects = obj_str.rstrip().split('\n')
/external/selinux/libsepol/cil/src/
Dcil_internal.h538 char *obj_str; member
552 char *obj_str; member
593 char *obj_str; member
609 char *obj_str; member
620 char *obj_str; member
Dcil_policy.c610 char *obj_str = ((struct cil_symtab_datum*)rule->obj)->name; in cil_typerule_to_policy() local
615 …fprintf(file_arr[ALLOWS], "type_transition %s %s : %s %s;\n", src_str, tgt_str, obj_str, result_st… in cil_typerule_to_policy()
618 fprintf(file_arr[ALLOWS], "type_change %s %s : %s %s\n;", src_str, tgt_str, obj_str, result_str); in cil_typerule_to_policy()
621 fprintf(file_arr[ALLOWS], "type_member %s %s : %s %s;\n", src_str, tgt_str, obj_str, result_str); in cil_typerule_to_policy()
635 char *obj_str = ((struct cil_symtab_datum*)nametypetrans->obj)->name; in cil_nametypetransition_to_policy() local
638 …fprintf(file_arr[file_index], "type_transition %s %s : %s %s %s;\n", src_str, tgt_str, obj_str, re… in cil_nametypetransition_to_policy()
1035 char *obj_str = ((struct cil_symtab_datum*)roletrans->obj)->name; in cil_name_to_policy() local
1038 …fprintf(file_arr[ALLOWS], "role_transition %s %s:%s %s;\n", src_str, tgt_str, obj_str, result_str); in cil_name_to_policy()
Dcil_copy_ast.c695 new->obj_str = orig->obj_str; in cil_copy_roletransition()
712 new->obj_str = orig->obj_str; in cil_copy_nametypetransition()
731 new->obj_str = orig->obj_str; in cil_copy_rangetransition()
788 new->obj_str = orig->obj_str; in cil_copy_fill_permissionx()
852 new->obj_str = orig->obj_str; in cil_copy_type_rule()
Dcil_tree.c746 cil_log(CIL_INFO, " %s", roletrans->obj_str); in cil_tree_print_node()
1019 cil_log(CIL_INFO, " %s", nametypetrans->obj_str); in cil_tree_print_node()
1051 cil_log(CIL_INFO, " %s", rangetrans->obj_str); in cil_tree_print_node()
1129 cil_log(CIL_INFO, " %s", rule->obj_str); in cil_tree_print_node()
Dcil.c2054 (*nametypetrans)->obj_str = NULL; in cil_nametypetransition_init()
2070 (*rangetrans)->obj_str = NULL; in cil_rangetransition_init()
2135 (*permx)->obj_str = NULL; in cil_permissionx_init()
2150 (*type_rule)->obj_str = NULL; in cil_type_rule_init()
2164 (*role_trans)->obj_str = NULL; in cil_roletransition_init()
Dcil_resolve_ast.c281 rc = cil_resolve_name(current, permx->obj_str, CIL_SYM_CLASSES, extra_args, &obj_datum); in cil_resolve_permissionx()
380 rc = cil_resolve_name(current, rule->obj_str, CIL_SYM_CLASSES, extra_args, &obj_datum); in cil_resolve_type_rule()
588 rc = cil_resolve_name(current, nametypetrans->obj_str, CIL_SYM_CLASSES, extra_args, &obj_datum); in cil_resolve_nametypetransition()
646 rc = cil_resolve_name(current, rangetrans->obj_str, CIL_SYM_CLASSES, extra_args, &obj_datum); in cil_resolve_rangetransition()
1023 rc = cil_resolve_name(current, roletrans->obj_str, CIL_SYM_CLASSES, extra_args, &obj_datum); in cil_resolve_roletransition()
Dcil_build_ast.c1809 roletrans->obj_str = parse_current->next->next->next->data; in cil_gen_roletransition()
2092 permx->obj_str = parse_current->next->data; in cil_fill_permissionx()
2247 rule->obj_str = parse_current->next->next->next->data; in cil_gen_type_rule()
3298 nametypetrans->obj_str = s3; in cil_gen_typetransition()
3312 rule->obj_str = s3; in cil_gen_typetransition()
3373 rangetrans->obj_str = parse_current->next->next->next->data; in cil_gen_rangetransition()
/external/boringssl/src/crypto/pkcs8/
Dpkcs8.c363 char obj_str[80]; in pbe_cipher_init() local
366 strncpy(obj_str, "NULL", sizeof(obj_str)); in pbe_cipher_init()
368 i2t_ASN1_OBJECT(obj_str, sizeof(obj_str), pbe_obj); in pbe_cipher_init()
370 ERR_add_error_data(2, "TYPE=", obj_str); in pbe_cipher_init()
/external/selinux/libsepol/cil/test/unit/
Dtest_cil_copy_ast.c581 CuAssertStrEquals(tc, ((struct cil_type_rule *)test_ast_node->data)->obj_str, test_copy->obj_str); in test_cil_copy_type_rule()
Dtest_cil_build_ast.c8493 …CuAssertStrEquals(tc, ((struct cil_type_rule*)test_ast_node->data)->obj_str, test_tree->root->cl_h… in test_cil_gen_type_rule_transition()
8641 …CuAssertStrEquals(tc, ((struct cil_type_rule*)test_ast_node->data)->obj_str, test_tree->root->cl_h… in test_cil_gen_type_rule_change()
8789 …CuAssertStrEquals(tc, ((struct cil_type_rule*)test_ast_node->data)->obj_str, test_tree->root->cl_h… in test_cil_gen_type_rule_member()