/Linux-v6.1/tools/perf/ui/ |
D | browser.c | 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, color); in ui_browser__set_percent_color() 47 void ui_browser__gotorc_title(struct ui_browser *browser, int y, int x) in ui_browser__gotorc_title() argument 49 SLsmg_gotorc(browser->y + y, browser->x + x); in ui_browser__gotorc_title() [all …]
|
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 …]
|
D | Build | 10 perf-$(CONFIG_SLANG) += browser.o
|
/Linux-v6.1/tools/perf/ui/browsers/ |
D | annotate.c | 35 static inline struct annotation *browser__annotation(struct ui_browser *browser) in browser__annotation() argument 37 struct map_symbol *ms = browser->priv; in browser__annotation() 41 static bool disasm_line__filter(struct ui_browser *browser, void *entry) in disasm_line__filter() argument 43 struct annotation *notes = browser__annotation(browser); in disasm_line__filter() 48 static int ui_browser__jumps_percent_color(struct ui_browser *browser, int nr, bool current) in ui_browser__jumps_percent_color() argument 50 struct annotation *notes = browser__annotation(browser); in ui_browser__jumps_percent_color() 52 if (current && (!browser->use_navkeypressed || browser->navkeypressed)) in ui_browser__jumps_percent_color() 61 static int ui_browser__set_jumps_percent_color(void *browser, int nr, bool current) in ui_browser__set_jumps_percent_color() argument 63 int color = ui_browser__jumps_percent_color(browser, nr, current); in ui_browser__set_jumps_percent_color() 64 return ui_browser__set_color(browser, color); in ui_browser__set_jumps_percent_color() [all …]
|
D | hists.c | 50 static int hists_browser__scnprintf_title(struct hist_browser *browser, char *bf, size_t size); 61 static int hist_browser__get_folding(struct hist_browser *browser) in hist_browser__get_folding() argument 64 struct hists *hists = browser->hists; in hist_browser__get_folding() 68 (nd = hists__filter_entries(nd, browser->min_pcnt)) != NULL; in hist_browser__get_folding() 81 struct ui_browser *browser = &hb->b; in hist_browser__set_title_space() local 85 browser->extra_title_lines = hb->show_headers ? hpp_list->nr_header_lines : 0; in hist_browser__set_title_space() 105 struct ui_browser *browser = &hb->b; in hist_browser__update_rows() local 111 browser->rows += browser->extra_title_lines; in hist_browser__update_rows() 112 browser->extra_title_lines = 0; in hist_browser__update_rows() 116 browser->extra_title_lines = hpp_list->nr_header_lines; in hist_browser__update_rows() [all …]
|
D | map.c | 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) - sizeof(struct rb_node) - sizeof(u32); in symbol__browser_index() 48 static int map_browser__search(struct map_browser *browser) in map_browser__search() argument [all …]
|
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()
|
D | hists.h | 30 int (*title)(struct hist_browser *browser, 35 void hist_browser__delete(struct hist_browser *browser); 36 int hist_browser__run(struct hist_browser *browser, const char *help, 38 void hist_browser__init(struct hist_browser *browser,
|
/Linux-v6.1/Documentation/translations/zh_CN/scheduler/ |
D | sched-design-CFS.rst | 194 # mkdir browser # 创建 "browser" 任务组 196 # #配置multimedia组,令其获得browser组两倍CPU带宽 199 # echo 1024 > browser/cpu.shares 201 # firefox & # 启动firefox并把它移到 "browser" 组 202 # echo <firefox_pid> > browser/tasks
|
/Linux-v6.1/tools/perf/ui/tui/ |
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-v6.1/tools/perf/ |
D | builtin-c2c.c | 2582 perf_c2c_cacheline_browser__title(struct hist_browser *browser, in perf_c2c_cacheline_browser__title() argument 2589 cl_browser = container_of(browser, struct c2c_cacheline_browser, hb); in perf_c2c_cacheline_browser__title() 2602 struct c2c_cacheline_browser *browser; in c2c_cacheline_browser__new() local 2604 browser = zalloc(sizeof(*browser)); in c2c_cacheline_browser__new() 2605 if (browser) { in c2c_cacheline_browser__new() 2606 hist_browser__init(&browser->hb, hists); in c2c_cacheline_browser__new() 2607 browser->hb.c2c_filter = true; in c2c_cacheline_browser__new() 2608 browser->hb.title = perf_c2c_cacheline_browser__title; in c2c_cacheline_browser__new() 2609 browser->he = he; in c2c_cacheline_browser__new() 2612 return browser; in c2c_cacheline_browser__new() [all …]
|
/Linux-v6.1/Documentation/scheduler/ |
D | sched-design-CFS.rst | 237 # mkdir browser # create "browser" group of tasks 240 # #that of browser group 243 # echo 1024 > browser/cpu.shares 245 # firefox & # Launch firefox and move it to "browser" group 246 # echo <firefox_pid> > browser/tasks
|
/Linux-v6.1/tools/perf/ui/gtk/ |
D | Build | 3 gtk-y += browser.o
|
/Linux-v6.1/tools/perf/Documentation/ |
D | perf.txt | 63 in browser mode
|
D | perf-config.txt | 325 This option works with tui browser. 688 around samples in perf report sample context browser. 693 in the interactive perf browser and whose output is displayed.
|
D | perf-report.txt | 480 go straight to the histogram browser, just like 'perf report' with no events 520 report tui browser.
|
D | perf-top.txt | 332 go straight to the histogram browser, just like 'perf top' with no events
|
/Linux-v6.1/Documentation/rust/ |
D | general-information.rst | 30 To read the docs locally in your web browser, run e.g.::
|
/Linux-v6.1/Documentation/hwmon/ |
D | w83627hf.rst | 66 [1] http://www.lm-sensors.org/browser/lm-sensors/trunk/doc/vid
|
/Linux-v6.1/Documentation/RCU/ |
D | rcu.rst | 91 Or point your browser at (http://www.rdrop.com/users/paulmck/RCU/).
|
/Linux-v6.1/Documentation/userspace-api/media/rc/ |
D | rc-tables.rst | 673 - Open the default browser
|
/Linux-v6.1/drivers/accessibility/speakup/ |
D | Kconfig | 12 point your browser at <http://www.linux-speakup.org/>.
|
/Linux-v6.1/Documentation/admin-guide/cgroup-v1/ |
D | cgroups.rst | 143 and depending on who is launching the browser he can:: 148 a separate cgroup for every browser launched and associate it with 153 access temporarily to a student's browser (since it is night and the user
|
/Linux-v6.1/Documentation/fb/ |
D | framebuffer.rst | 328 Point your web browser to http://sourceforge.net/projects/linux-fbdev/ for
|
/Linux-v6.1/Documentation/admin-guide/ |
D | spkguide.txt | 793 lynx web browser. You definitely want to turn cursor tracking off when 807 web browser. Speakup does this quite nicely. Suppose you wanted to 808 past the following url into your browser: 822 your browser, or even paste the url on a command line as an argument to 823 your browser.
|