Home
last modified time | relevance | path

Searched refs:hist_browser (Results 1 – 3 of 3) sorted by relevance

/tools/perf/ui/browsers/
Dhists.h6 struct hist_browser { struct
23 int (*title)(struct hist_browser *browser, argument
27 struct hist_browser *hist_browser__new(struct hists *hists);
28 void hist_browser__delete(struct hist_browser *browser);
29 int hist_browser__run(struct hist_browser *browser, const char *help);
30 void hist_browser__init(struct hist_browser *browser,
Dhists.c24 static int perf_evsel_browser_title(struct hist_browser *browser,
26 static void hist_browser__update_nr_entries(struct hist_browser *hb);
31 static bool hist_browser__has_filter(struct hist_browser *hb) in hist_browser__has_filter()
36 static int hist_browser__get_folding(struct hist_browser *browser) in hist_browser__get_folding()
54 static u32 hist_browser__nr_entries(struct hist_browser *hb) in hist_browser__nr_entries()
69 static void hist_browser__update_rows(struct hist_browser *hb) in hist_browser__update_rows()
89 struct hist_browser *hb = container_of(browser, struct hist_browser, b); in hist_browser__refresh_dimensions()
103 static void hist_browser__gotorc(struct hist_browser *browser, int row, int column) in hist_browser__gotorc()
113 static void hist_browser__reset(struct hist_browser *browser) in hist_browser__reset()
241 static int hierarchy_count_rows(struct hist_browser *hb, struct hist_entry *he, in hierarchy_count_rows()
[all …]
/tools/perf/
Dbuiltin-report.c427 int (*hist_browser)(struct perf_evlist *evlist, const char *help, in report__gtk_browse_hists() local
430 hist_browser = dlsym(perf_gtk_handle, "perf_evlist__gtk_browse_hists"); in report__gtk_browse_hists()
432 if (hist_browser == NULL) { in report__gtk_browse_hists()
437 return hist_browser(rep->session->evlist, help, NULL, rep->min_percent); in report__gtk_browse_hists()