Searched defs:ctfp (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_xlator.c360 dt_xlator_ident(dt_xlator_t *dxp, ctf_file_t *ctfp, ctf_id_t type) argument
362 if (ctf_type_kind(ctfp, ctf_type_resolve(ctfp, type)) == CTF_K_POINTER)
H A Ddt_decl.c466 ctf_file_t *ctfp; local
471 ctfp = yypcb->pcb_hdl->dt_cdefs->dm_ctfp;
473 ctfp = yypcb->pcb_hdl->dt_ddefs->dm_ctfp;
484 if (name != NULL && (type = ctf_lookup_by_name(ctfp, n)) != CTF_ERR &&
485 ctf_type_kind(ctfp, type) != CTF_K_FORWARD)
489 type = ctf_add_struct(ctfp, flag, name);
491 type = ctf_add_union(ctfp, flag, name);
493 if (type == CTF_ERR || ctf_update(ctfp) == CTF_ERR) {
495 n, ctf_errmsg(ctf_errno(ctfp)));
498 ddp->dd_ctfp = ctfp;
663 ctf_file_t *ctfp; local
1082 dt_scope_push(ctf_file_t *ctfp, ctf_id_t type) argument
[all...]
H A Ddt_cg.c145 dt_cg_load(dt_node_t *dnp, ctf_file_t *ctfp, ctf_id_t type) argument
167 ctf_type_encoding(ctfp, type, &e) != CTF_ERR)
170 size = ctf_type_size(ctfp, type);
191 ctf_file_t *ctfp = dnp->dn_ctfp; local
202 type = ctf_type_resolve(ctfp, dnp->dn_type);
203 kind = ctf_type_kind(ctfp, type);
207 if (ctf_array_info(ctfp, type, &r) != 0) {
208 yypcb->pcb_hdl->dt_ctferr = ctf_errno(ctfp);
213 type = ctf_type_reference(ctfp, type);
215 if ((size = ctf_type_size(ctfp, typ
625 ctf_file_t *ctfp = dnp->dn_ctfp; local
684 ctf_file_t *ctfp = dnp->dn_ctfp; local
1357 ctf_file_t *ctfp = dnp->dn_ctfp; local
[all...]
H A Ddt_module.c485 dt_module_lookup_by_ctf(dtrace_hdl_t *dtp, ctf_file_t *ctfp) argument
487 return (ctfp ? ctf_getspecific(ctfp) : NULL);
H A Ddt_parser.c256 ctf_file_t *ctfp = tip->dtt_ctfp; local
258 ctf_id_t base = ctf_type_resolve(ctfp, type);
263 if ((ptr = ctf_type_pointer(ctfp, type)) != CTF_ERR ||
264 (ptr = ctf_type_pointer(ctfp, base)) != CTF_ERR) {
274 if (ctfp != dmp->dm_ctfp && ctfp != ctf_parent_file(dmp->dm_ctfp) &&
275 (type = ctf_add_type(dmp->dm_ctfp, ctfp, type)) == CTF_ERR) {
295 dt_type_name(ctf_file_t *ctfp, ctf_id_t type, char *buf, size_t len) argument
299 if (ctfp == DT_FPTR_CTFP(dtp) && type == DT_FPTR_TYPE(dtp))
301 else if (ctfp
3087 ctf_file_t *ctfp; local
3940 ctf_file_t *ctfp; local
[all...]
H A Ddt_printf.c106 ctf_file_t *ctfp; local
115 ctfp = dnp->dn_ctfp;
116 base = ctf_type_resolve(ctfp, dnp->dn_type);
117 kind = ctf_type_kind(ctfp, base);
119 return (kind == CTF_K_ARRAY && ctf_array_info(ctfp, base, &r) == 0 &&
120 (base = ctf_type_resolve(ctfp, r.ctr_contents)) != CTF_ERR &&
121 ctf_type_encoding(ctfp, base, &e) == 0 && IS_CHAR(e));
128 ctf_file_t *ctfp = dnp->dn_ctfp; local
129 ctf_id_t base = ctf_type_resolve(ctfp, dnp->dn_type);
130 uint_t kind = ctf_type_kind(ctfp, bas
179 ctf_file_t *ctfp = dnp->dn_ctfp; local
192 ctf_file_t *ctfp = dnp->dn_ctfp; local
205 ctf_file_t *ctfp = dnp->dn_ctfp; local
[all...]

Completed in 799 milliseconds