Home
last modified time | relevance | path

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

/linux/tools/perf/ui/browsers/
H A Dhists.h9 struct hist_browser { struct
28 int (*title)(struct hist_browser *browser, argument
32 struct hist_browser *hist_browser__new(struct hists *hists);
33 void hist_browser__delete(struct hist_browser *browser);
34 int hist_browser__run(struct hist_browser *browser, const char *help,
36 void hist_browser__init(struct hist_browser *browser,
H A Dhists.c52 static int hists_browser__scnprintf_title(struct hist_browser *browser, char *bf, size_t size);
53 static void hist_browser__update_nr_entries(struct hist_browser *hb);
58 static bool hist_browser__has_filter(struct hist_browser *hb) in hist_browser__has_filter()
63 static int hist_browser__get_folding(struct hist_browser *browser) in hist_browser__get_folding()
81 static void hist_browser__set_title_space(struct hist_browser *hb) in hist_browser__set_title_space()
90 static u32 hist_browser__nr_entries(struct hist_browser *hb) in hist_browser__nr_entries()
105 static void hist_browser__update_rows(struct hist_browser *hb) in hist_browser__update_rows()
131 struct hist_browser *hb = container_of(browser, struct hist_browser, b); in hist_browser__refresh_dimensions()
144 static void hist_browser__reset(struct hist_browser *browse in hist_browser__reset()
[all...]
/linux/tools/perf/
H A Dbuiltin-c2c.c2565 static int perf_c2c__toggle_annotation(struct hist_browser *browser) in perf_c2c__hists_fprintf()
2602 static void c2c_browser__update_nr_entries(struct hist_browser *hb) in perf_c2c__toggle_annotation()
2620 struct hist_browser hb; in perf_c2c__toggle_annotation()
2625 perf_c2c_cacheline_browser__title(struct hist_browser *browser, in perf_c2c__toggle_annotation()
2663 struct hist_browser *browser; in perf_c2c_cacheline_browser__title()
2722 static int perf_c2c_browser__title(struct hist_browser *browser, in perf_c2c__browse_cacheline()
2733 static struct hist_browser* in perf_c2c__browse_cacheline()
2736 struct hist_browser *browser = hist_browser__new(hists); in perf_c2c__browse_cacheline()
2754 struct hist_browser *browser; in perf_c2c_browser__title()
H A Dbuiltin-kvm.c519 static void kvm_browser__update_nr_entries(struct hist_browser *hb) in kvm_browser__update_nr_entries()
535 static int kvm_browser__title(struct hist_browser *browser, in kvm_browser__title()
543 static struct hist_browser* in perf_kvm_browser__new()
546 struct hist_browser *browser = hist_browser__new(hists); in perf_kvm_browser__new()
556 struct hist_browser *browser; in kvm__hists_browse()
H A Dbuiltin-report.c646 int (*hist_browser)(struct evlist *evlist, const char *help, in report__warn_kptr_restrict()
649 hist_browser = dlsym(perf_gtk_handle, "evlist__gtk_browse_hists"); in report__gtk_browse_hists()
651 if (hist_browser == NULL) { in report__gtk_browse_hists() local
656 return hist_browser(rep->session->evlist, help, NULL, rep->min_percent); in report__gtk_browse_hists()