Home
last modified time | relevance | path

Searched refs:sort_order (Results 1 – 13 of 13) sorted by relevance

/openbmc/linux/tools/perf/tests/
H A Dhists_output.c147 sort_order = NULL; /* equivalent to sort_order = "comm,dso,sym" */ in test1()
174 pr_info("[fields = %s, sort = %s]\n", field_order, sort_order); in test1()
249 sort_order = "pid"; in test2()
274 pr_info("[fields = %s, sort = %s]\n", field_order, sort_order); in test2()
305 sort_order = NULL; in test3()
328 pr_info("[fields = %s, sort = %s]\n", field_order, sort_order); in test3()
379 sort_order = "sym"; in test4()
406 pr_info("[fields = %s, sort = %s]\n", field_order, sort_order); in test4()
481 sort_order = "dso,pid"; in test5()
509 pr_info("[fields = %s, sort = %s]\n", field_order, sort_order); in test5()
/openbmc/linux/tools/perf/
H A Dbuiltin-report.c525 ret += fprintf(fp, "\n# Sort order : %s", sort_order ? : default_mem_sort_order); in hists__fprintf_nr_sample_events()
1272 OPT_STRING('s', "sort", &sort_order, "key[,key2...]", in cmd_report()
1549 if (sort_order == NULL) in cmd_report()
1550 sort_order = "srcline,symbol,dso"; in cmd_report()
1605 sort_order = NULL; in cmd_report()
1613 if (sort_order && strstr(sort_order, "ipc")) { in cmd_report()
1618 if (sort_order && strstr(sort_order, "symbol")) { in cmd_report()
1621 sort_order, "ipc_lbr"); in cmd_report()
1625 sort_order, "ipc_null"); in cmd_report()
1628 sort_order = sort_tmp; in cmd_report()
[all …]
H A Dbuiltin-kwork.c183 char *tmp, *tok, *str = strdup(kwork->sort_order); in setup_sorting()
192 pr_debug("Sort order: %s\n", kwork->sort_order); in setup_sorting()
1713 .sort_order = NULL, in cmd_kwork()
1738 OPT_STRING('s', "sort", &kwork.sort_order, "key[,key2...]", in cmd_kwork()
1757 OPT_STRING('s', "sort", &kwork.sort_order, "key[,key2...]", in cmd_kwork()
1826 kwork.sort_order = default_report_sort_order; in cmd_kwork()
1836 kwork.sort_order = default_latency_sort_order; in cmd_kwork()
H A Dbuiltin-top.c1510 OPT_STRING('s', "sort", &sort_order, "key[,key2...]", in cmd_top()
1712 if (!sort_order) in cmd_top()
1713 sort_order = "srcline,symbol,dso"; in cmd_top()
1733 if (sort_order) in cmd_top()
1736 parse_options_usage(sort_order ? NULL : top_usage, in cmd_top()
H A Dbuiltin-annotate.c708 sort_order = "dso,symbol"; in cmd_annotate()
H A Dbuiltin-sched.c183 const char *sort_order; member
3445 char *tmp, *tok, *str = strdup(sched->sort_order); in setup_sorting()
3562 .sort_order = default_sort_order, in cmd_sched()
3582 OPT_STRING('s', "sort", &sched.sort_order, "key[,key2...]", in cmd_sched()
H A Dbuiltin-diff.c1292 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
1999 sort_order = "srcline,symbol,dso"; in cmd_diff()
/openbmc/linux/tools/perf/util/
H A Dkwork.h203 const char *sort_order; member
H A Dsort.h20 extern const char *sort_order;
H A Dsort.c48 const char *sort_order; variable
3352 if (!sort_order || is_strict_order(sort_order)) in setup_sort_order()
3355 if (sort_order[1] == '\0') { in setup_sort_order()
3365 get_default_sort_order(evlist), sort_order + 1) < 0) { in setup_sort_order()
3370 sort_order = new_sort_order; in setup_sort_order()
3415 sort_keys = sort_order; in __setup_sorting()
3714 sort_order = NULL; in reset_output_field()
/openbmc/linux/tools/perf/ui/stdio/
H A Dhist.c240 sort_order && strstarts(sort_order, "sym")) in callchain__fprintf_graph()
/openbmc/linux/tools/perf/Documentation/
H A Dperf-config.txt121 sort_order = comm,dso,symbol
499 report.sort_order::
/openbmc/linux/tools/perf/ui/browsers/
H A Dhists.c2758 if (sort_order && strstr(sort_order, "time")) { in add_script_opt()