| /linux/tools/perf/ui/ |
| H A D | browser.c | 13 #include "browser.h" 20 static int ui_browser__percent_color(struct ui_browser *browser, in ui_browser__percent_color() argument 23 if (current && (!browser->use_navkeypressed || browser->navkeypressed)) in ui_browser__percent_color() 32 int ui_browser__set_color(struct ui_browser *browser, int color) in ui_browser__set_color() argument 34 int ret = browser->current_color; in ui_browser__set_color() 35 browser->current_color = color; in ui_browser__set_color() 40 void ui_browser__set_percent_color(struct ui_browser *browser, in ui_browser__set_percent_color() argument 43 int color = ui_browser__percent_color(browser, percent, current); in ui_browser__set_percent_color() 44 ui_browser__set_color(browser, colo in ui_browser__set_percent_color() 47 ui_browser__gotorc_title(struct ui_browser * browser,int y,int x) ui_browser__gotorc_title() argument 52 ui_browser__gotorc(struct ui_browser * browser,int y,int x) ui_browser__gotorc() argument 78 ui_browser__list_head_filter_entries(struct ui_browser * browser,struct list_head * pos) ui_browser__list_head_filter_entries() argument 91 ui_browser__list_head_filter_prev_entries(struct ui_browser * browser,struct list_head * pos) ui_browser__list_head_filter_prev_entries() argument 103 ui_browser__list_head_seek(struct ui_browser * browser,off_t offset,int whence) ui_browser__list_head_seek() argument 138 ui_browser__rb_tree_seek(struct ui_browser * browser,off_t offset,int whence) ui_browser__rb_tree_seek() argument 168 ui_browser__rb_tree_refresh(struct ui_browser * browser) ui_browser__rb_tree_refresh() argument 189 ui_browser__is_current_entry(struct ui_browser * browser,unsigned row) ui_browser__is_current_entry() argument 194 ui_browser__refresh_dimensions(struct ui_browser * browser) ui_browser__refresh_dimensions() argument 203 ui_browser__handle_resize(struct ui_browser * browser) ui_browser__handle_resize() argument 210 ui_browser__warning(struct ui_browser * browser,int timeout,const char * format,...) ui_browser__warning() argument 236 ui_browser__warn_unhandled_hotkey(struct ui_browser * browser,int key,int timeout,const char * help) ui_browser__warn_unhandled_hotkey() argument 244 ui_browser__help_window(struct ui_browser * browser,const char * text) ui_browser__help_window() argument 254 ui_browser__dialog_yesno(struct ui_browser * browser,const char * text) ui_browser__dialog_yesno() argument 264 ui_browser__reset_index(struct ui_browser * browser) ui_browser__reset_index() argument 270 __ui_browser__show_title(struct ui_browser * browser,const char * title) __ui_browser__show_title() argument 277 ui_browser__show_title(struct ui_browser * browser,const char * title) ui_browser__show_title() argument 284 ui_browser__show(struct ui_browser * browser,const char * title,const char * helpline,...) ui_browser__show() argument 311 ui_browser__hide(struct ui_browser * browser) ui_browser__hide() argument 320 ui_browser__scrollbar_set(struct ui_browser * browser) ui_browser__scrollbar_set() argument 342 __ui_browser__refresh(struct ui_browser * browser) __ui_browser__refresh() argument 363 ui_browser__refresh(struct ui_browser * browser) ui_browser__refresh() argument 378 ui_browser__update_nr_entries(struct ui_browser * browser,u32 nr_entries) ui_browser__update_nr_entries() argument 396 ui_browser__run(struct ui_browser * browser,int delay_secs) ui_browser__run() argument 510 ui_browser__list_head_refresh(struct ui_browser * browser) ui_browser__list_head_refresh() argument 620 ui_browser__argv_seek(struct ui_browser * browser,off_t offset,int whence) ui_browser__argv_seek() argument 639 ui_browser__argv_refresh(struct ui_browser * browser) ui_browser__argv_refresh() argument 665 __ui_browser__vline(struct ui_browser * browser,unsigned int column,u16 start,u16 end) __ui_browser__vline() argument 682 __ui_browser__line_arrow_up(struct ui_browser * browser,unsigned int column,u64 start,u64 end) __ui_browser__line_arrow_up() argument 722 __ui_browser__line_arrow_down(struct ui_browser * browser,unsigned int column,u64 start,u64 end) __ui_browser__line_arrow_down() argument 762 __ui_browser__line_arrow(struct ui_browser * browser,unsigned int column,u64 start,u64 end) __ui_browser__line_arrow() argument 771 ui_browser__mark_fused(struct ui_browser * browser,unsigned int column,unsigned int row,int diff,bool arrow_down) ui_browser__mark_fused() argument [all...] |
| H A D | browser.h | 27 void (*refresh_dimensions)(struct ui_browser *browser); 28 unsigned int (*refresh)(struct ui_browser *browser); 29 void (*write)(struct ui_browser *browser, void *entry, int row); 30 void (*seek)(struct ui_browser *browser, off_t offset, int whence); 31 bool (*filter)(struct ui_browser *browser, void *entry); 37 int ui_browser__set_color(struct ui_browser *browser, int color); 38 void ui_browser__set_percent_color(struct ui_browser *browser, 40 bool ui_browser__is_current_entry(struct ui_browser *browser, unsigned row); 41 void ui_browser__refresh_dimensions(struct ui_browser *browser); 42 void ui_browser__reset_index(struct ui_browser *browser); [all …]
|
| H A D | Build | 10 perf-ui-$(CONFIG_SLANG) += browser.o
|
| /linux/tools/perf/ui/browsers/ |
| H A D | annotate.c | 2 #include "../browser.h" 59 static inline struct annotation *browser__annotation(struct ui_browser *browser) in browser__annotation() argument 61 struct map_symbol *ms = browser->priv; in browser__annotation() 65 static bool disasm_line__filter(struct ui_browser *browser __maybe_unused, void *entry) in disasm_line__filter() 71 static int ui_browser__jumps_percent_color(struct ui_browser *browser, int nr, bool current) in ui_browser__jumps_percent_color() argument 73 struct annotation *notes = browser__annotation(browser); in ui_browser__jumps_percent_color() 75 if (current && (!browser->use_navkeypressed || browser->navkeypressed)) in ui_browser__jumps_percent_color() 84 static int ui_browser__set_jumps_percent_color(void *browser, int nr, bool current) in ui_browser__set_jumps_percent_color() argument 86 int color = ui_browser__jumps_percent_color(browser, n in ui_browser__set_jumps_percent_color() 90 annotate_browser__set_color(void * browser,int color) annotate_browser__set_color() argument 95 annotate_browser__write_graph(void * browser,int graph) annotate_browser__write_graph() argument 100 annotate_browser__set_percent_color(void * browser,double percent,bool current) annotate_browser__set_percent_color() argument 105 annotate_browser__printf(void * browser,const char * fmt,...) annotate_browser__printf() argument 114 annotate_browser__write(struct ui_browser * browser,void * entry,int row) annotate_browser__write() argument 183 annotate_browser__draw_current_jump(struct ui_browser * browser) annotate_browser__draw_current_jump() argument 254 annotate_browser__refresh(struct ui_browser * browser) annotate_browser__refresh() argument 282 disasm_rb_tree__insert(struct annotate_browser * browser,struct annotation_line * al) disasm_rb_tree__insert() argument 303 annotate_browser__set_top(struct annotate_browser * browser,struct annotation_line * pos,u32 idx) annotate_browser__set_top() argument 326 annotate_browser__set_rb_top(struct annotate_browser * browser,struct rb_node * nd) annotate_browser__set_rb_top() argument 338 annotate_browser__calc_percent(struct annotate_browser * browser,struct evsel * evsel) annotate_browser__calc_percent() argument 383 annotate_browser__find_new_asm_line(struct annotate_browser * browser,int idx_asm) annotate_browser__find_new_asm_line() argument 400 annotate_browser__find_next_asm_line(struct annotate_browser * browser,struct annotation_line * al) annotate_browser__find_next_asm_line() argument 445 annotate_browser__toggle_source(struct annotate_browser * browser,struct evsel * evsel) annotate_browser__toggle_source() argument 525 annotate_browser__show_full_location(struct ui_browser * browser) annotate_browser__show_full_location() argument 542 ui_browser__init_asm_mode(struct ui_browser * browser) ui_browser__init_asm_mode() argument 558 annotate_browser__show_function_title(struct annotate_browser * browser) annotate_browser__show_function_title() argument 581 annotate_browser__callq(struct annotate_browser * browser,struct evsel * evsel,struct hist_browser_timer * hbt) annotate_browser__callq() argument 620 annotate_browser__find_offset(struct annotate_browser * browser,s64 offset,s64 * idx) annotate_browser__find_offset() argument 637 annotate_browser__jump(struct annotate_browser * browser,struct evsel * evsel,struct hist_browser_timer * hbt) annotate_browser__jump() argument 666 annotate_browser__find_string(struct annotate_browser * browser,char * s,s64 * idx) annotate_browser__find_string() argument 686 __annotate_browser__search(struct annotate_browser * browser) __annotate_browser__search() argument 703 annotate_browser__find_string_reverse(struct annotate_browser * browser,char * s,s64 * idx) annotate_browser__find_string_reverse() argument 723 __annotate_browser__search_reverse(struct annotate_browser * browser) __annotate_browser__search_reverse() argument 739 annotate_browser__search_window(struct annotate_browser * browser,int delay_secs) annotate_browser__search_window() argument 751 annotate_browser__search(struct annotate_browser * browser,int delay_secs) annotate_browser__search() argument 759 annotate_browser__continue_search(struct annotate_browser * browser,int delay_secs) annotate_browser__continue_search() argument 768 annotate_browser__search_reverse(struct annotate_browser * browser,int delay_secs) annotate_browser__search_reverse() argument 778 annotate_browser__continue_search_reverse(struct annotate_browser * browser,int delay_secs) annotate_browser__continue_search_reverse() argument 787 annotate_browser__show(struct annotate_browser * browser,char * title,const char * help) annotate_browser__show() argument 841 annotate_browser__debuginfo_warning(struct annotate_browser * browser) annotate_browser__debuginfo_warning() argument 855 annotate_browser__curr_hot_offset(struct annotate_browser * browser) annotate_browser__curr_hot_offset() argument 865 annotate_browser__symbol_annotate_error(struct annotate_browser * browser,int err) annotate_browser__symbol_annotate_error() argument 877 annotate_browser__run(struct annotate_browser * browser,struct evsel * evsel,struct hist_browser_timer * hbt) annotate_browser__run() argument 1164 struct annotate_browser browser = { __hist_entry__tui_annotate() local [all...] |
| H A D | hists.c | 52 static int hists_browser__scnprintf_title(struct hist_browser *browser, char *bf, size_t size); 63 static int hist_browser__get_folding(struct hist_browser *browser) in hist_browser__get_folding() 66 struct hists *hists = browser->hists; in hist_browser__get_folding() 70 (nd = hists__filter_entries(nd, browser->min_pcnt)) != NULL; in hist_browser__get_folding() 83 struct ui_browser *browser = &hb->b; in hist_browser__set_title_space() 87 browser->extra_title_lines = hb->show_headers ? hpp_list->nr_header_lines : 0; in hist_browser__set_title_space() 107 struct ui_browser *browser = &hb->b; in hist_browser__update_rows() 113 browser->rows += browser->extra_title_lines; in hist_browser__update_rows() 114 browser in hist_browser__update_rows() 62 hist_browser__get_folding(struct hist_browser * browser) hist_browser__get_folding() argument 82 struct ui_browser *browser = &hb->b; hist_browser__set_title_space() local 106 struct ui_browser *browser = &hb->b; hist_browser__update_rows() local 128 hist_browser__refresh_dimensions(struct ui_browser * browser) hist_browser__refresh_dimensions() argument 143 hist_browser__reset(struct hist_browser * browser) hist_browser__reset() argument 397 hist_browser__selection_has_children(struct hist_browser * browser) hist_browser__selection_has_children() argument 411 hist_browser__selection_unfolded(struct hist_browser * browser) hist_browser__selection_unfolded() argument 425 hist_browser__selection_sym_name(struct hist_browser * browser,char * bf,size_t size) hist_browser__selection_sym_name() argument 443 hist_browser__toggle_fold(struct hist_browser * browser) hist_browser__toggle_fold() argument 603 __hist_browser__set_folding(struct hist_browser * browser,bool unfold) __hist_browser__set_folding() argument 635 hist_browser__set_folding(struct hist_browser * browser,bool unfold) hist_browser__set_folding() argument 646 hist_browser__set_folding_selected(struct hist_browser * browser,bool unfold) hist_browser__set_folding_selected() argument 657 ui_browser__warn_lost_events(struct ui_browser * browser) ui_browser__warn_lost_events() argument 666 hist_browser__title(struct hist_browser * browser,char * bf,size_t size) hist_browser__title() argument 671 hist_browser__handle_hotkey(struct hist_browser * browser,bool warn_lost_event,char * title,size_t size,int key) hist_browser__handle_hotkey() argument 744 hist_browser__run(struct hist_browser * browser,const char * help,bool warn_lost_event,int key) hist_browser__run() argument 789 hist_browser__show_callchain_entry(struct hist_browser * browser,struct callchain_list * chain,const char * str,int offset,unsigned short row,struct callchain_print_arg * arg) hist_browser__show_callchain_entry() argument 830 hist_browser__check_output_full(struct hist_browser * browser,unsigned short row) hist_browser__check_output_full() argument 844 hist_browser__show_callchain_list(struct hist_browser * browser,struct callchain_node * node,struct callchain_list * chain,unsigned short row,u64 total,bool need_percent,int offset,print_callchain_entry_fn print,struct callchain_print_arg * arg) hist_browser__show_callchain_list() argument 909 hist_browser__show_callchain_flat(struct hist_browser * browser,struct rb_root * root,unsigned short row,u64 total,u64 parent_total,print_callchain_entry_fn print,struct callchain_print_arg * arg,check_output_full_fn is_output_full) hist_browser__show_callchain_flat() argument 987 hist_browser__folded_callchain_str(struct hist_browser * browser,struct callchain_list * chain,char * value_str,char * old_str) hist_browser__folded_callchain_str() argument 1013 hist_browser__show_callchain_folded(struct hist_browser * browser,struct rb_root * root,unsigned short row,u64 total,u64 parent_total,print_callchain_entry_fn print,struct callchain_print_arg * arg,check_output_full_fn is_output_full) hist_browser__show_callchain_folded() argument 1098 hist_browser__show_callchain_graph(struct hist_browser * browser,struct rb_root * root,int level,unsigned short row,u64 total,u64 parent_total,print_callchain_entry_fn print,struct callchain_print_arg * arg,check_output_full_fn is_output_full) hist_browser__show_callchain_graph() argument 1164 hist_browser__show_callchain(struct hist_browser * browser,struct hist_entry * entry,int level,unsigned short row,print_callchain_entry_fn print,struct callchain_print_arg * arg,check_output_full_fn is_output_full) hist_browser__show_callchain() argument 1329 hist_browser__show_entry(struct hist_browser * browser,struct hist_entry * entry,unsigned short row) hist_browser__show_entry() argument 1435 hist_browser__show_hierarchy_entry(struct hist_browser * browser,struct hist_entry * entry,unsigned short row,int level) hist_browser__show_hierarchy_entry() argument 1601 hist_browser__show_no_entry(struct hist_browser * browser,unsigned short row,int level) hist_browser__show_no_entry() argument 1677 hists_browser__scnprintf_headers(struct hist_browser * browser,char * buf,size_t size,int line) hists_browser__scnprintf_headers() argument 1715 hists_browser__scnprintf_hierarchy_headers(struct hist_browser * browser,char * buf,size_t size,int line) hists_browser__scnprintf_hierarchy_headers() argument 1803 hists_browser__hierarchy_headers(struct hist_browser * browser) hists_browser__hierarchy_headers() argument 1819 hists_browser__headers(struct hist_browser * browser) hists_browser__headers() argument 1838 hist_browser__show_headers(struct hist_browser * browser) hist_browser__show_headers() argument 1846 ui_browser__hists_init_top(struct ui_browser * browser) ui_browser__hists_init_top() argument 1856 hist_browser__refresh(struct ui_browser * browser) hist_browser__refresh() argument 1947 ui_browser__hists_seek(struct ui_browser * browser,off_t offset,int whence) ui_browser__hists_seek() argument 2078 hist_browser__fprintf_callchain(struct hist_browser * browser,struct hist_entry * he,FILE * fp,int level) hist_browser__fprintf_callchain() argument 2092 hist_browser__fprintf_entry(struct hist_browser * browser,struct hist_entry * he,FILE * fp) hist_browser__fprintf_entry() argument 2134 hist_browser__fprintf_hierarchy_entry(struct hist_browser * browser,struct hist_entry * he,FILE * fp,int level) hist_browser__fprintf_hierarchy_entry() argument 2192 hist_browser__fprintf(struct hist_browser * browser,FILE * fp) hist_browser__fprintf() argument 2216 hist_browser__dump(struct hist_browser * browser) hist_browser__dump() argument 2250 hist_browser__init(struct hist_browser * browser,struct hists * hists) hist_browser__init() argument 2284 struct hist_browser *browser = zalloc(sizeof(*browser)); hist_browser__new() local 2297 struct hist_browser *browser = hist_browser__new(evsel__hists(evsel)); perf_evsel_browser__new() local 2307 hist_browser__delete(struct hist_browser * browser) hist_browser__delete() argument 2312 hist_browser__selected_entry(struct hist_browser * browser) hist_browser__selected_entry() argument 2317 hist_browser__selected_thread(struct hist_browser * browser) hist_browser__selected_thread() argument 2322 hist_browser__selected_res_sample(struct hist_browser * browser) hist_browser__selected_res_sample() argument 2333 hists_browser__scnprintf_title(struct hist_browser * browser,char * bf,size_t size) hists_browser__scnprintf_title() argument 2467 do_annotate(struct hist_browser * browser,struct popup_action * act) do_annotate() argument 2549 do_annotate_type(struct hist_browser * browser,struct popup_action * act __maybe_unused) do_annotate_type() argument 2573 do_zoom_thread(struct hist_browser * browser,struct popup_action * act) do_zoom_thread() argument 2609 add_thread_opt(struct hist_browser * browser,struct popup_action * act,char ** optstr,struct thread * thread) add_thread_opt() argument 2635 hists_browser__zoom_map(struct hist_browser * browser,struct map * map) hists_browser__zoom_map() argument 2660 do_zoom_dso(struct hist_browser * browser,struct popup_action * act) do_zoom_dso() argument 2666 add_dso_opt(struct hist_browser * browser,struct popup_action * act,char ** optstr,struct map * map) add_dso_opt() argument 2682 do_toggle_callchain(struct hist_browser * browser,struct popup_action * act __maybe_unused) do_toggle_callchain() argument 2688 add_callchain_toggle_opt(struct hist_browser * browser,struct popup_action * act,char ** optstr) add_callchain_toggle_opt() argument 2713 add_map_opt(struct hist_browser * browser,struct popup_action * act,char ** optstr,struct map * map) add_map_opt() argument 2728 do_run_script(struct hist_browser * browser,struct popup_action * act) do_run_script() argument 2773 do_res_sample_script(struct hist_browser * browser,struct popup_action * act) do_res_sample_script() argument 2809 add_script_opt(struct hist_browser * browser,struct popup_action * act,char ** optstr,struct thread * thread,struct symbol * sym) add_script_opt() argument 2869 add_switch_opt(struct hist_browser * browser,struct popup_action * act,char ** optstr) add_switch_opt() argument 2901 do_zoom_socket(struct hist_browser * browser,struct popup_action * act) do_zoom_socket() argument 2922 add_socket_opt(struct hist_browser * browser,struct popup_action * act,char ** optstr,int socket_id) add_socket_opt() argument 3004 struct hist_browser *browser = perf_evsel_browser__new(evsel, hbt, env); evsel__hists_browse() local 3463 perf_evsel_menu__write(struct ui_browser * browser,void * entry,int row) perf_evsel_menu__write() argument 3695 block_hists_browser__title(struct hist_browser * browser,char * bf,size_t size) block_hists_browser__title() argument 3714 struct hist_browser *browser; block_hists_tui_browse() local [all...] |
| H A D | map.c | 12 #include "../browser.h" 25 static void map_browser__write(struct ui_browser *browser, void *nd, int row) in map_browser__write() argument 28 struct map_browser *mb = container_of(browser, struct map_browser, b); in map_browser__write() 29 bool current_entry = ui_browser__is_current_entry(browser, row); in map_browser__write() 32 ui_browser__set_percent_color(browser, 0, current_entry); in map_browser__write() 33 ui_browser__printf(browser, "%*" PRIx64 " %*" PRIx64 " %c ", in map_browser__write() 37 width = browser->width - ((mb->addrlen * 2) + 4); in map_browser__write() 39 ui_browser__write_nstring(browser, sym->name, width); in map_browser__write() 43 static u32 *symbol__browser_index(struct symbol *browser) in symbol__browser_index() argument 45 return ((void *)browser) in symbol__browser_index() 48 map_browser__search(struct map_browser * browser) map_browser__search() argument 75 map_browser__run(struct map_browser * browser) map_browser__run() argument [all...] |
| H A D | annotate-data.c | 76 static int add_child_entries(struct annotated_data_browser *browser, in add_child_entries() argument 90 entry->hists = calloc(browser->nr_events, sizeof(*entry->hists)); in add_child_entries() 108 parent_list = &browser->entries; in add_child_entries() 113 int nr = add_child_entries(browser, entry, adt, pos, evsel, in add_child_entries() 142 static u32 count_visible_entries(struct annotated_data_browser *browser) in count_visible_entries() argument 147 list_for_each_entry(entry, &browser->entries, node) in count_visible_entries() 153 static int annotated_data_browser__collect_entries(struct annotated_data_browser *browser) in annotated_data_browser__collect_entries() argument 155 struct hist_entry *he = browser->b.priv; in annotated_data_browser__collect_entries() 159 INIT_LIST_HEAD(&browser->entries); in annotated_data_browser__collect_entries() 161 add_child_entries(browser, /*parent=*/NULL, adt, &adt->self, evsel, in annotated_data_browser__collect_entries() [all …]
|
| H A D | header.c | 12 static void ui_browser__argv_write(struct ui_browser *browser, in ui_browser__argv_write() argument 18 bool current_entry = ui_browser__is_current_entry(browser, row); in ui_browser__argv_write() 19 unsigned long offset = (unsigned long)browser->priv; in ui_browser__argv_write() 26 ui_browser__set_color(browser, current_entry ? HE_COLORSET_SELECTED : in ui_browser__argv_write() 29 ui_browser__write_nstring(browser, str, browser->width); in ui_browser__argv_write()
|
| H A D | hists.h | 28 int (*title)(struct hist_browser *browser, 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,
|
| /linux/tools/perf/ui/tui/ |
| H A D | util.c | 15 static void ui_browser__argv_write(struct ui_browser *browser, in ui_browser__argv_write() argument 19 bool current_entry = ui_browser__is_current_entry(browser, row); in ui_browser__argv_write() 21 ui_browser__set_color(browser, current_entry ? HE_COLORSET_SELECTED : in ui_browser__argv_write() 23 ui_browser__write_nstring(browser, *arg, browser->width); in ui_browser__argv_write()
|
| /linux/tools/perf/ |
| H A D | builtin-c2c.c | 2565 static int perf_c2c__toggle_annotation(struct hist_browser *browser) in perf_c2c__hists_fprintf() 2567 struct hist_entry *he = browser->he_selection; in perf_c2c__hists_fprintf() 2574 ui_browser__help_window(&browser->b, "No annotation support"); in perf_c2c__hists_fprintf() 2579 ui_browser__help_window(&browser->b, "No entry selected for annotation"); in perf_c2c__hists_fprintf() 2585 ui_browser__help_window(&browser->b, "Can not annotate, no symbol found"); in perf_c2c__hists_fprintf() 2591 ui_browser__help_window(&browser->b, "Failed to initialize annotation source"); 2625 perf_c2c_cacheline_browser__title(struct hist_browser *browser, in perf_c2c__toggle_annotation() 2632 cl_browser = container_of(browser, struct c2c_cacheline_browser, hb); in c2c_browser__update_nr_entries() 2645 struct c2c_cacheline_browser *browser; in c2c_browser__update_nr_entries() 2647 browser 2593 perf_c2c__toggle_annotation(struct hist_browser * browser) perf_c2c__toggle_annotation() argument 2653 perf_c2c_cacheline_browser__title(struct hist_browser * browser,char * bf,size_t size) perf_c2c_cacheline_browser__title() argument 2673 struct c2c_cacheline_browser *browser; c2c_cacheline_browser__new() local 2691 struct hist_browser *browser; perf_c2c__browse_cacheline() local 2750 perf_c2c_browser__title(struct hist_browser * browser,char * bf,size_t size) perf_c2c_browser__title() argument 2764 struct hist_browser *browser = hist_browser__new(hists); perf_c2c_browser__new() local 2776 struct hist_browser *browser; perf_c2c__hists_browse() local [all...] |
| H A D | builtin-kvm.c | 535 static int kvm_browser__title(struct hist_browser *browser, in kvm_browser__title() 539 browser->nr_non_filtered_entries); in kvm_browser__title() 546 struct hist_browser *browser = hist_browser__new(hists); in perf_kvm_browser__new() 548 if (browser) in perf_kvm_browser__new() 549 browser->title = kvm_browser__title; in perf_kvm_browser__new() 551 return browser; 556 struct hist_browser *browser; in kvm__hists_browse() 559 browser = perf_kvm_browser__new(hists); in kvm__hists_browse() 560 if (browser == NULL) in kvm__hists_browse() 567 kvm_browser__update_nr_entries(browser); in kvm__hists_browse() 533 kvm_browser__title(struct hist_browser * browser,char * buf,size_t size) kvm_browser__title() argument 544 struct hist_browser *browser = hist_browser__new(hists); perf_kvm_browser__new() local 554 struct hist_browser *browser; kvm__hists_browse() local [all...] |
| /linux/tools/perf/Documentation/ |
| H A D | perf.txt | 63 in browser mode 67 and perf report without browser)
|
| H A D | perf-config.txt | 348 This option works with tui browser. 684 around samples in perf report sample context browser. 689 in the interactive perf browser and whose output is displayed.
|
| H A D | perf-report.txt | 530 go straight to the histogram browser, just like 'perf report' with no events 570 report tui browser.
|
| H A D | perf-top.txt | 373 go straight to the histogram browser, just like 'perf top' with no events
|
| /linux/tools/perf/ui/gtk/ |
| H A D | Build | 3 gtk-y += browser.o
|
| /linux/Documentation/RCU/ |
| H A D | rcu.rst | 92 …Or point your browser at (https://docs.google.com/document/d/1X0lThx8OK0ZgLMqVoXiR4ZrGURHrXK6NyLRb…
|
| /linux/Documentation/hwmon/ |
| H A D | w83627hf.rst | 66 [1] http://www.lm-sensors.org/browser/lm-sensors/trunk/doc/vid
|
| /linux/Documentation/userspace-api/media/rc/ |
| H A D | rc-tables.rst | 673 - Open the default browser
|
| /linux/Documentation/userspace-api/ |
| H A D | check_exec.rst | 20 However, a JavaScript engine running in a web browser should already be
|
| /linux/drivers/accessibility/speakup/ |
| H A D | Kconfig | 12 point your browser at <http://www.linux-speakup.org/>.
|
| /linux/Documentation/admin-guide/hw-vuln/ |
| H A D | attack_vector_controls.rst | 43 shown to be exploitable from browser-based sandboxes. User-to-kernel
|
| /linux/Documentation/fb/ |
| H A D | framebuffer.rst | 328 Point your web browser to http://sourceforge.net/projects/linux-fbdev/ for
|
| /linux/Documentation/admin-guide/ |
| H A D | spkguide.txt | 798 lynx web browser. You definitely want to turn cursor tracking off when 812 web browser. Speakup does this quite nicely. Suppose you wanted to 813 past the following url into your browser: 827 your browser, or even paste the url on a command line as an argument to 828 your browser.
|