Lines Matching refs:out_format
1306 static int write_pages(struct twriter *tw, enum out_format_t out_format, in write_pages() argument
1361 if (out_format == OUT_FMT_FUNCTION) in write_pages()
1410 if (out_format == OUT_FMT_FUNCTION) { in write_pages()
1493 static int write_flyrecord(struct twriter *tw, enum out_format_t out_format, in write_flyrecord() argument
1520 ret = write_pages(tw, out_format, missing_countp, skip_countp); in write_flyrecord()
1546 static int make_ftrace(FILE *fout, enum out_format_t out_format) in make_ftrace() argument
1577 ret = write_flyrecord(tw, out_format, &missing_count, &skip_count); in make_ftrace()
1710 static int make_flame_tree(enum out_format_t out_format, in make_flame_tree() argument
1775 static int output_tree(FILE *fout, enum out_format_t out_format, in output_tree() argument
1783 if (out_format == OUT_FMT_FLAMEGRAPH_CALLS) { in output_tree()
1815 if (output_tree(fout, out_format, child, str, maxlen, in output_tree()
1830 static int make_flamegraph(FILE *fout, enum out_format_t out_format) in make_flamegraph() argument
1835 if (make_flame_tree(out_format, &tree)) in make_flamegraph()
1839 if (output_tree(fout, out_format, tree, str, sizeof(str), 0)) in make_flamegraph()
1858 enum out_format_t out_format) in prof_tool() argument
1877 if (out_format != OUT_FMT_FUNCTION && in prof_tool()
1878 out_format != OUT_FMT_FUNCGRAPH) in prof_tool()
1879 out_format = OUT_FMT_FUNCTION; in prof_tool()
1886 err = make_ftrace(fout, out_format); in prof_tool()
1891 if (out_format != OUT_FMT_FLAMEGRAPH_CALLS && in prof_tool()
1892 out_format != OUT_FMT_FLAMEGRAPH_TIMING) in prof_tool()
1893 out_format = OUT_FMT_FLAMEGRAPH_CALLS; in prof_tool()
1900 err = make_flamegraph(fout, out_format); in prof_tool()
1912 enum out_format_t out_format = OUT_FMT_DEFAULT; in main() local
1927 out_format = OUT_FMT_FUNCTION; in main()
1929 out_format = OUT_FMT_FUNCGRAPH; in main()
1931 out_format = OUT_FMT_FLAMEGRAPH_CALLS; in main()
1933 out_format = OUT_FMT_FLAMEGRAPH_TIMING; in main()
1968 out_fname, out_format); in main()