Home
last modified time | relevance | path

Searched refs:ctf_type_resolve (Results 1 – 12 of 12) sorted by relevance

/freebsd-src/cddl/contrib/opensolaris/common/ctf/
H A Dctf_types.c192 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 Dctf_lookup.c116 ntype = ctf_type_resolve(fp, type); in ctf_lookup_by_name()
H A Dctf_create.c1199 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 Ddt_xlator.c190 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 Ddt_parser.c273 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 Ddt_print.c399 (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 Ddt_printf.c120 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 Ddt_cg.c83 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 Ddt_options.c808 ctf_id_t type = ctf_type_resolve(fp, DT_STR_TYPE(dtp)); in dt_opt_strsize()
H A Ddt_decl.c547 base = ctf_type_resolve(dtt.dtt_ctfp, dtt.dtt_type); in dt_decl_member()
H A Ddt_module.c1646 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 Dctf_api.h181 extern ctf_id_t ctf_type_resolve(ctf_file_t *, ctf_id_t);