Home
last modified time | relevance | path

Searched refs:dtt (Results 1 – 25 of 26) sorted by relevance

12

/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_provider.c247 dtrace_typeinfo_t dtt; in dt_probe_discover() local
329 adp->dtargd_native, &dtt) != 0) { in dt_probe_discover()
335 dtt.dtt_object = NULL; in dt_probe_discover()
336 dtt.dtt_ctfp = NULL; in dt_probe_discover()
337 dtt.dtt_type = CTF_ERR; in dt_probe_discover()
340 dtt.dtt_ctfp, dtt.dtt_type, in dt_probe_discover()
341 dtt.dtt_flags & DTT_FL_USER ? B_TRUE : B_FALSE); in dt_probe_discover()
344 if (dtt.dtt_type != CTF_ERR && (adp->dtargd_xlate[0] == '\0' || in dt_probe_discover()
349 adp->dtargd_xlate, &dtt) != 0) { in dt_probe_discover()
355 dtt.dtt_object = NULL; in dt_probe_discover()
[all …]
H A Ddt_decl.c513 dtrace_typeinfo_t dtt; in dt_decl_member() local
533 if (dt_decl_type(ddp, &dtt) != 0) in dt_decl_member()
541 if (dtt.dtt_ctfp == DT_DYN_CTFP(yypcb->pcb_hdl) && in dt_decl_member()
542 dtt.dtt_type == DT_DYN_TYPE(yypcb->pcb_hdl)) { in dt_decl_member()
547 base = ctf_type_resolve(dtt.dtt_ctfp, dtt.dtt_type); in dt_decl_member()
548 kind = ctf_type_kind(dtt.dtt_ctfp, base); in dt_decl_member()
549 size = ctf_type_size(dtt.dtt_ctfp, base); in dt_decl_member()
554 "%s\n", dt_type_name(dtt.dtt_ctfp, dtt.dtt_type, in dt_decl_member()
587 if (ctf_type_kind(dtt.dtt_ctfp, base) != CTF_K_INTEGER || in dt_decl_member()
588 ctf_type_encoding(dtt.dtt_ctfp, base, &cte) == CTF_ERR || in dt_decl_member()
[all …]
H A Ddt_parser.c1376 dtrace_typeinfo_t dtt; in dt_node_type() local
1388 err = dt_decl_type(ddp, &dtt); in dt_node_type()
1400 dt_node_type_assign(dnp, dtt.dtt_ctfp, dtt.dtt_type, dtt.dtt_flags); in dt_node_type()
1402 if (dtt.dtt_ctfp == dtp->dt_cdefs->dm_ctfp || in dt_node_type()
1403 dtt.dtt_ctfp == dtp->dt_ddefs->dm_ctfp) in dt_node_type()
1444 dtrace_typeinfo_t dtt; in dt_node_decl() local
1450 if (dt_decl_type(ddp, &dtt) != 0) in dt_node_decl()
1487 if (ctf_type_kind(dtt.dtt_ctfp, dtt.dtt_type) == CTF_K_FUNCTION && in dt_node_decl()
1508 ctf_type_cmp(dtt.dtt_ctfp, dtt.dtt_type, in dt_node_decl()
1513 dt_type_name(dtt.dtt_ctfp, dtt.dtt_type, in dt_node_decl()
[all …]
H A Ddt_ident.c186 dtrace_typeinfo_t dtt; in dt_idcook_func() local
239 if (dt_type_lookup(s, &dtt) == -1) { in dt_idcook_func()
249 idp->di_ctfp = dtt.dtt_ctfp; in dt_idcook_func()
250 idp->di_type = dtt.dtt_type; in dt_idcook_func()
304 if (dt_type_lookup(p1, &dtt) == -1) { in dt_idcook_func()
311 dtt.dtt_ctfp, dtt.dtt_type, B_FALSE); in dt_idcook_func()
445 dtrace_typeinfo_t dtt; in dt_idcook_regs() local
467 if (dt_type_lookup("uint64_t", &dtt) == -1) { in dt_idcook_regs()
472 idp->di_ctfp = dtt.dtt_ctfp; in dt_idcook_regs()
473 idp->di_type = dtt.dtt_type; in dt_idcook_regs()
[all …]
H A Ddt_printf.c736 dtrace_typeinfo_t dtt; in dt_pfdict_create() local
750 dtt.dtt_ctfp = NULL; in dt_pfdict_create()
751 dtt.dtt_type = CTF_ERR; in dt_pfdict_create()
759 dtp, DTRACE_OBJ_DDEFS, pfc->pfc_tstr, &dtt) != 0) { in dt_pfdict_create()
764 pfc->pfc_dctfp = dtt.dtt_ctfp; in dt_pfdict_create()
765 pfc->pfc_dtype = dtt.dtt_type; in dt_pfdict_create()
773 dtp, DTRACE_OBJ_CDEFS, pfc->pfc_tstr, &dtt) == 0) { in dt_pfdict_create()
774 pfc->pfc_cctfp = dtt.dtt_ctfp; in dt_pfdict_create()
775 pfc->pfc_ctype = dtt.dtt_type; in dt_pfdict_create()
1059 dtrace_typeinfo_t dtt; in dt_printf_validate() local
[all …]
H A Ddt_open.c1043 dtrace_typeinfo_t dtt; in dt_vopen() local
1560 dtp->dt_ints[i].did_name, &dtt) != 0) { in dt_vopen()
1566 dtp->dt_ints[i].did_ctfp = dtt.dtt_ctfp; in dt_vopen()
1567 dtp->dt_ints[i].did_type = dtt.dtt_type; in dt_vopen()
H A Ddt_cg.c75 dtrace_typeinfo_t dtt; in dt_cg_membinfo() local
78 dt_type_lookup(n, &dtt) == -1 || ( in dt_cg_membinfo()
79 dtt.dtt_ctfp == fp && dtt.dtt_type == type)) in dt_cg_membinfo()
82 fp = dtt.dtt_ctfp; in dt_cg_membinfo()
83 type = ctf_type_resolve(fp, dtt.dtt_type); in dt_cg_membinfo()
H A Ddt_cc.c2609 dtrace_type_strcompile(dtrace_hdl_t *dtp, const char *s, dtrace_typeinfo_t *dtt) in dtrace_type_strcompile() argument
2612 DTRACE_PROBESPEC_NONE, dtt, 0, 0, NULL, NULL, s); in dtrace_type_strcompile()
2617 dtrace_type_fcompile(dtrace_hdl_t *dtp, FILE *fp, dtrace_typeinfo_t *dtt) in dtrace_type_fcompile() argument
2620 DTRACE_PROBESPEC_NONE, dtt, 0, 0, NULL, fp, NULL); in dtrace_type_fcompile()
/freebsd/sys/contrib/device-tree/Bindings/i2c/
H A Di2c-davinci.txt39 dtt@48 {
/freebsd/sys/contrib/device-tree/src/powerpc/
H A Dsocrates.dts96 dtt@28 {
106 dtt@4c {
H A Dcharon.dts163 dtt@28 {
H A Dtqm8541.dts96 dtt@48 {
H A Dtqm8540.dts97 dtt@48 {
H A Dtqm8555.dts96 dtt@48 {
H A Dtqm8560.dts98 dtt@48 {
H A Dxpedite5200.dts135 dtt@34 {
H A Dmpc8379_rdb.dts141 dtt@48 {
H A Dmpc8377_rdb.dts143 dtt@48 {
H A Dmpc8378_rdb.dts143 dtt@48 {
H A Dtqm8548-bigflash.dts96 dtt@48 {
H A Dtqm8548.dts96 dtt@48 {
H A Dxpedite5200_xmon.dts139 dtt@34 {
/freebsd/sys/contrib/device-tree/src/mips/netlogic/
H A Dxlp_evp.dts67 dtt@4c {
H A Dxlp_fvp.dts67 dtt@4c {
H A Dxlp_svp.dts67 dtt@4c {

12