Lines Matching defs:pvp
530 dt_header_provider(dtrace_hdl_t *dtp, dt_provider_t *pvp, FILE *out)
536 if (pvp->pv_flags & DT_PROVIDER_IMPL)
543 p = pvp->pv_desc.dtvd_name;
551 info.dthi_pmname = alloca(strlen(pvp->pv_desc.dtvd_name) + 1);
552 dt_header_fmt_macro(info.dthi_pmname, pvp->pv_desc.dtvd_name);
554 info.dthi_pfname = alloca(strlen(pvp->pv_desc.dtvd_name) + 1 + i);
555 dt_header_fmt_func(info.dthi_pfname, pvp->pv_desc.dtvd_name);
560 if (dt_idhash_iter(pvp->pv_probes, dt_header_probe, &info) != 0)
564 if (dt_idhash_iter(pvp->pv_probes, dt_header_decl, &info) != 0)
572 if (dt_idhash_iter(pvp->pv_probes, dt_header_probe, &info) != 0)
584 dt_provider_t *pvp;
604 for (pvp = dt_list_next(&dtp->dt_provlist);
605 pvp != NULL; pvp = dt_list_next(pvp)) {
606 if (dt_header_provider(dtp, pvp, out) != 0)