Lines Matching refs:hist_browser
23 struct hist_browser { struct
41 static void hist_browser__update_nr_entries(struct hist_browser *hb); argument
46 static bool hist_browser__has_filter(struct hist_browser *hb) in hist_browser__has_filter()
51 static int hist_browser__get_folding(struct hist_browser *browser) in hist_browser__get_folding()
69 static u32 hist_browser__nr_entries(struct hist_browser *hb) in hist_browser__nr_entries()
82 static void hist_browser__update_rows(struct hist_browser *hb) in hist_browser__update_rows()
99 struct hist_browser *hb = container_of(browser, struct hist_browser, b); in hist_browser__refresh_dimensions()
113 static void hist_browser__gotorc(struct hist_browser *browser, int row, int column) in hist_browser__gotorc()
120 static void hist_browser__reset(struct hist_browser *browser) in hist_browser__reset()
285 static bool hist_browser__toggle_fold(struct hist_browser *browser) in hist_browser__toggle_fold()
376 __hist_browser__set_folding(struct hist_browser *browser, bool unfold) in __hist_browser__set_folding()
390 static void hist_browser__set_folding(struct hist_browser *browser, bool unfold) in hist_browser__set_folding()
409 static int hist_browser__run(struct hist_browser *browser, in hist_browser__run()
500 typedef void (*print_callchain_entry_fn)(struct hist_browser *browser,
506 static void hist_browser__show_callchain_entry(struct hist_browser *browser, in hist_browser__show_callchain_entry()
532 static void hist_browser__fprintf_callchain_entry(struct hist_browser *b __maybe_unused, in hist_browser__fprintf_callchain_entry()
544 typedef bool (*check_output_full_fn)(struct hist_browser *browser,
547 static bool hist_browser__check_output_full(struct hist_browser *browser, in hist_browser__check_output_full()
553 static bool hist_browser__check_dump_full(struct hist_browser *browser __maybe_unused, in hist_browser__check_dump_full()
561 static int hist_browser__show_callchain(struct hist_browser *browser, in hist_browser__show_callchain()
736 static int hist_browser__show_entry(struct hist_browser *browser, in hist_browser__show_entry()
878 static void hist_browser__show_headers(struct hist_browser *browser) in hist_browser__show_headers()
891 struct hist_browser *hb; in ui_browser__hists_init_top()
893 hb = container_of(browser, struct hist_browser, b); in ui_browser__hists_init_top()
903 struct hist_browser *hb = container_of(browser, struct hist_browser, b); in hist_browser__refresh()
969 struct hist_browser *hb; in ui_browser__hists_seek()
971 hb = container_of(browser, struct hist_browser, b); in ui_browser__hists_seek()
1090 static int hist_browser__fprintf_callchain(struct hist_browser *browser, in hist_browser__fprintf_callchain()
1107 static int hist_browser__fprintf_entry(struct hist_browser *browser, in hist_browser__fprintf_entry()
1148 static int hist_browser__fprintf(struct hist_browser *browser, FILE *fp) in hist_browser__fprintf()
1164 static int hist_browser__dump(struct hist_browser *browser) in hist_browser__dump()
1198 static struct hist_browser *hist_browser__new(struct hists *hists) in hist_browser__new()
1200 struct hist_browser *browser = zalloc(sizeof(*browser)); in hist_browser__new()
1214 static void hist_browser__delete(struct hist_browser *browser) in hist_browser__delete()
1219 static struct hist_entry *hist_browser__selected_entry(struct hist_browser *browser) in hist_browser__selected_entry()
1224 static struct thread *hist_browser__selected_thread(struct hist_browser *browser) in hist_browser__selected_thread()
1398 static void hist_browser__update_nr_entries(struct hist_browser *hb) in hist_browser__update_nr_entries()
1424 struct hist_browser *browser = hist_browser__new(hists); in perf_evsel__hists_browse()