Lines Matching refs:infop

406 	dt_header_info_t *infop = data;  in dt_header_decl()  local
407 dtrace_hdl_t *dtp = infop->dthi_dtp; in dt_header_decl()
422 if (fprintf(infop->dthi_out, "extern void __dtrace_%s___%s(", in dt_header_decl()
423 infop->dthi_pfname, fname) < 0) in dt_header_decl()
427 if (fprintf(infop->dthi_out, "%s", in dt_header_decl()
433 fprintf(infop->dthi_out, ", ") < 0) in dt_header_decl()
437 if (i == 0 && fprintf(infop->dthi_out, "void") < 0) in dt_header_decl()
440 if (fprintf(infop->dthi_out, ");\n") < 0) in dt_header_decl()
443 if (fprintf(infop->dthi_out, in dt_header_decl()
449 infop->dthi_pfname, fname, infop->dthi_pfname, fname) < 0) in dt_header_decl()
459 dt_header_info_t *infop = data; in dt_header_probe() local
460 dtrace_hdl_t *dtp = infop->dthi_dtp; in dt_header_probe()
476 if (fprintf(infop->dthi_out, "#define\t%s_%s(", in dt_header_probe()
477 infop->dthi_pmname, mname) < 0) in dt_header_probe()
481 if (fprintf(infop->dthi_out, "arg%d", i) < 0) in dt_header_probe()
485 fprintf(infop->dthi_out, ", ") < 0) in dt_header_probe()
489 if (!infop->dthi_empty) { in dt_header_probe()
490 if (fprintf(infop->dthi_out, ") \\\n\t") < 0) in dt_header_probe()
493 if (fprintf(infop->dthi_out, "__dtrace_%s___%s(", in dt_header_probe()
494 infop->dthi_pfname, fname) < 0) in dt_header_probe()
498 if (fprintf(infop->dthi_out, "arg%d", i) < 0) in dt_header_probe()
502 fprintf(infop->dthi_out, ", ") < 0) in dt_header_probe()
507 if (fprintf(infop->dthi_out, ")\n") < 0) in dt_header_probe()
510 if (!infop->dthi_empty) { in dt_header_probe()
511 if (fprintf(infop->dthi_out, in dt_header_probe()
519 infop->dthi_pmname, mname, in dt_header_probe()
520 infop->dthi_pfname, fname, in dt_header_probe()
521 infop->dthi_pmname, mname, in dt_header_probe()
522 infop->dthi_pfname, fname) < 0) in dt_header_probe()
526 if (fprintf(infop->dthi_out, "#define\t%s_%s_ENABLED() (0)\n", in dt_header_probe()
527 infop->dthi_pmname, mname) < 0) in dt_header_probe()