/freebsd-src/cddl/contrib/opensolaris/common/ctf/ |
H A D | ctf_types.c | 192 if ((type = ctf_type_resolve(fp, type)) == CTF_ERR) in ctf_member_iter() 234 if ((type = ctf_type_resolve(fp, type)) == CTF_ERR) in ctf_enum_iter() 287 ctf_type_resolve(ctf_file_t *fp, ctf_id_t type) in ctf_type_resolve() function 489 if ((type = ctf_type_resolve(fp, type)) == CTF_ERR) in ctf_type_size() 540 if ((type = ctf_type_resolve(fp, type)) == CTF_ERR) in ctf_type_align() 656 if ((type = ctf_type_resolve(fp, type)) == CTF_ERR) in ctf_type_pointer() 753 ltype = ctf_type_resolve(lfp, ltype); in ctf_type_compat() 756 rtype = ctf_type_resolve(rfp, rtype); in ctf_type_compat() 800 if ((type = ctf_type_resolve(fp, type)) == CTF_ERR) in _ctf_member_info() 897 if ((type = ctf_type_resolve(fp, type)) == CTF_ERR) in ctf_enum_name() [all …]
|
H A D | ctf_lookup.c | 116 ntype = ctf_type_resolve(fp, type); in ctf_lookup_by_name()
|
H A D | ctf_create.c | 1199 ctf_id_t ltype = ctf_type_resolve(fp, lmd->dmd_type); in ctf_add_member() 1346 if ((src_type = ctf_type_resolve(src_fp, src_type)) == CTF_ERR) in soucmp() 1348 if ((dst_type = ctf_type_resolve(dst_fp, dst_type)) == CTF_ERR) in soucmp()
|
/freebsd-src/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | dt_xlator.c | 190 dxp->dx_src_base = ctf_type_resolve(src->dtt_ctfp, src->dtt_type); in dt_xlator_create() 194 dxp->dx_dst_base = ctf_type_resolve(dst->dtt_ctfp, dst->dtt_type); in dt_xlator_create() 262 ctf_id_t src_base = ctf_type_resolve(src_ctfp, src_type); in dt_xlator_lookup() 266 ctf_id_t dst_base = ctf_type_resolve(dst_ctfp, dst_type); in dt_xlator_lookup() 284 dst_base = ctf_type_resolve(dst_ctfp, dst_type); in dt_xlator_lookup() 365 if (ctf_type_kind(ctfp, ctf_type_resolve(ctfp, type)) == CTF_K_POINTER) in dt_xlator_ident()
|
H A D | dt_parser.c | 273 ctf_id_t base = ctf_type_resolve(ctfp, type); in dt_type_pointer() 344 ctf_id_t lbase = ctf_type_resolve(lfp, ltype); in dt_type_promote() 347 ctf_id_t rbase = ctf_type_resolve(rfp, rtype); in dt_type_promote() 682 ctf_id_t base = ctf_type_resolve(fp, type); in dt_node_type_assign() 760 base = ctf_type_resolve(dnp->dn_ctfp, dnp->dn_type); in dt_node_type_size() 849 type = ctf_type_resolve(fp, dnp->dn_type); in dt_node_is_integer() 869 type = ctf_type_resolve(fp, dnp->dn_type); in dt_node_is_float() 888 type = ctf_type_resolve(fp, dnp->dn_type); in dt_node_is_scalar() 909 type = ctf_type_resolve(fp, dnp->dn_type); in dt_node_is_arith() 928 type = ctf_type_resolve(f in dt_node_is_vfptr() [all...] |
H A D | dt_print.c | 399 (rtype = ctf_type_resolve(ctfp, car.ctr_contents)) == CTF_ERR || in dt_print_array() 609 if ((rtype = ctf_type_resolve(ctfp, id)) == CTF_ERR || in dt_format_member() 662 if ((rtype = ctf_type_resolve(ctfp, id)) == CTF_ERR || in dt_print_member()
|
H A D | dt_printf.c | 120 base = ctf_type_resolve(ctfp, dnp->dn_type); in pfcheck_str() 124 (base = ctf_type_resolve(ctfp, r.ctr_contents)) != CTF_ERR && in pfcheck_str() 133 ctf_id_t base = ctf_type_resolve(ctfp, dnp->dn_type); in pfcheck_wstr() 140 (base = ctf_type_resolve(ctfp, r.ctr_contents)) != CTF_ERR && in pfcheck_wstr() 184 ctf_id_t type = ctf_type_resolve(ctfp, dnp->dn_type); in pfcheck_xshort() 197 ctf_id_t type = ctf_type_resolve(ctfp, dnp->dn_type); in pfcheck_xlong() 213 if (ctf_type_name(ctfp, ctf_type_resolve(ctfp, type), n, in pfcheck_xlonglong() 240 return (ctf_type_compat(dnp->dn_ctfp, ctf_type_resolve(dnp->dn_ctfp, in pfcheck_type()
|
H A D | dt_cg.c | 83 type = ctf_type_resolve(fp, dtt.dtt_type); in dt_cg_membinfo() 199 type = ctf_type_resolve(ctfp, dnp->dn_type); in dt_cg_ptrsize() 340 type = ctf_type_resolve(fp, dst->dn_left->dn_type); in dt_cg_field_set() 344 type = ctf_type_resolve(fp, type); in dt_cg_field_set() 649 type = ctf_type_resolve(ctfp, dnp->dn_type); in dt_cg_prearith_op() 706 type = ctf_type_resolve(ctfp, dnp->dn_type); in dt_cg_postarith_op() 1865 type = ctf_type_resolve(ctfp, dnp->dn_left->dn_type); in dt_cg_node() 1869 type = ctf_type_resolve(ctfp, type); in dt_cg_node()
|
H A D | dt_options.c | 808 ctf_id_t type = ctf_type_resolve(fp, DT_STR_TYPE(dtp)); in dt_opt_strsize()
|
H A D | dt_decl.c | 547 base = ctf_type_resolve(dtt.dtt_ctfp, dtt.dtt_type); in dt_decl_member()
|
H A D | dt_module.c | 1646 if (ctf_type_kind(fp, ctf_type_resolve(fp, id)) != in dtrace_lookup_by_type()
|
/freebsd-src/sys/cddl/contrib/opensolaris/uts/common/sys/ |
H A D | ctf_api.h | 181 extern ctf_id_t ctf_type_resolve(ctf_file_t *, ctf_id_t);
|