/linux-4.1.27/tools/perf/ui/ |
D | browser.c | 17 static int ui_browser__percent_color(struct ui_browser *browser, in ui_browser__percent_color() argument 20 if (current && (!browser->use_navkeypressed || browser->navkeypressed)) in ui_browser__percent_color() 29 int ui_browser__set_color(struct ui_browser *browser, int color) in ui_browser__set_color() argument 31 int ret = browser->current_color; in ui_browser__set_color() 32 browser->current_color = color; in ui_browser__set_color() 37 void ui_browser__set_percent_color(struct ui_browser *browser, in ui_browser__set_percent_color() argument 40 int color = ui_browser__percent_color(browser, percent, current); in ui_browser__set_percent_color() 41 ui_browser__set_color(browser, color); in ui_browser__set_percent_color() 44 void ui_browser__gotorc(struct ui_browser *browser, int y, int x) in ui_browser__gotorc() argument 46 SLsmg_gotorc(browser->y + y, browser->x + x); in ui_browser__gotorc() [all …]
|
D | browser.h | 22 void (*refresh_dimensions)(struct ui_browser *browser); 23 unsigned int (*refresh)(struct ui_browser *browser); 24 void (*write)(struct ui_browser *browser, void *entry, int row); 25 void (*seek)(struct ui_browser *browser, off_t offset, int whence); 26 bool (*filter)(struct ui_browser *browser, void *entry); 32 int ui_browser__set_color(struct ui_browser *browser, int color); 33 void ui_browser__set_percent_color(struct ui_browser *browser, 35 bool ui_browser__is_current_entry(struct ui_browser *browser, unsigned row); 36 void ui_browser__refresh_dimensions(struct ui_browser *browser); 37 void ui_browser__reset_index(struct ui_browser *browser); [all …]
|
D | Build | 10 libperf-$(CONFIG_SLANG) += browser.o
|
/linux-4.1.27/tools/perf/ui/browsers/ |
D | annotate.c | 63 static bool disasm_line__filter(struct ui_browser *browser __maybe_unused, in disasm_line__filter() 74 static int annotate_browser__jumps_percent_color(struct annotate_browser *browser, in annotate_browser__jumps_percent_color() argument 77 if (current && (!browser->b.use_navkeypressed || browser->b.navkeypressed)) in annotate_browser__jumps_percent_color() 79 if (nr == browser->max_jump_sources) in annotate_browser__jumps_percent_color() 86 static int annotate_browser__set_jumps_percent_color(struct annotate_browser *browser, in annotate_browser__set_jumps_percent_color() argument 89 int color = annotate_browser__jumps_percent_color(browser, nr, current); in annotate_browser__set_jumps_percent_color() 90 return ui_browser__set_color(&browser->b, color); in annotate_browser__set_jumps_percent_color() 93 static void annotate_browser__write(struct ui_browser *browser, void *entry, int row) in annotate_browser__write() argument 95 struct annotate_browser *ab = container_of(browser, struct annotate_browser, b); in annotate_browser__write() 98 bool current_entry = ui_browser__is_current_entry(browser, row); in annotate_browser__write() [all …]
|
D | hists.c | 51 static int hist_browser__get_folding(struct hist_browser *browser) in hist_browser__get_folding() argument 54 struct hists *hists = browser->hists; in hist_browser__get_folding() 58 (nd = hists__filter_entries(nd, browser->min_pcnt)) != NULL; in hist_browser__get_folding() 84 struct ui_browser *browser = &hb->b; in hist_browser__update_rows() local 87 browser->rows = browser->height - header_offset; in hist_browser__update_rows() 92 index_row = browser->index - browser->top_idx; in hist_browser__update_rows() 93 if (index_row >= browser->rows) in hist_browser__update_rows() 94 browser->index -= index_row - browser->rows + 1; in hist_browser__update_rows() 97 static void hist_browser__refresh_dimensions(struct ui_browser *browser) in hist_browser__refresh_dimensions() argument 99 struct hist_browser *hb = container_of(browser, struct hist_browser, b); in hist_browser__refresh_dimensions() [all …]
|
D | map.c | 21 static void map_browser__write(struct ui_browser *browser, void *nd, int row) in map_browser__write() argument 24 struct map_browser *mb = container_of(browser, struct map_browser, b); in map_browser__write() 25 bool current_entry = ui_browser__is_current_entry(browser, row); in map_browser__write() 28 ui_browser__set_percent_color(browser, 0, current_entry); in map_browser__write() 33 width = browser->width - ((mb->addrlen * 2) + 4); in map_browser__write() 39 static u32 *symbol__browser_index(struct symbol *browser) in symbol__browser_index() argument 41 return ((void *)browser) - sizeof(struct rb_node) - sizeof(u32); in symbol__browser_index() 44 static int map_browser__search(struct map_browser *browser) in map_browser__search() argument 56 sym = map__find_symbol(browser->map, addr, NULL); in map_browser__search() 58 sym = map__find_symbol_by_name(browser->map, target, NULL); in map_browser__search() [all …]
|
D | scripts.c | 75 static void script_browser__write(struct ui_browser *browser, in script_browser__write() argument 79 bool current_entry = ui_browser__is_current_entry(browser, row); in script_browser__write() 81 ui_browser__set_color(browser, current_entry ? HE_COLORSET_SELECTED : in script_browser__write() 84 slsmg_write_nstring(sline->line, browser->width); in script_browser__write() 87 static int script_browser__run(struct perf_script_browser *browser) in script_browser__run() argument 91 if (ui_browser__show(&browser->b, browser->script_name, in script_browser__run() 96 key = ui_browser__run(&browser->b, 0); in script_browser__run() 102 ui_browser__hide(&browser->b); in script_browser__run()
|
D | header.c | 11 static void ui_browser__argv_write(struct ui_browser *browser, in ui_browser__argv_write() argument 17 bool current_entry = ui_browser__is_current_entry(browser, row); in ui_browser__argv_write() 18 unsigned long offset = (unsigned long)browser->priv; in ui_browser__argv_write() 25 ui_browser__set_color(browser, current_entry ? HE_COLORSET_SELECTED : in ui_browser__argv_write() 28 slsmg_write_nstring(str, browser->width); in ui_browser__argv_write()
|
/linux-4.1.27/tools/perf/ui/tui/ |
D | util.c | 16 static void ui_browser__argv_write(struct ui_browser *browser, in ui_browser__argv_write() argument 20 bool current_entry = ui_browser__is_current_entry(browser, row); in ui_browser__argv_write() 22 ui_browser__set_color(browser, current_entry ? HE_COLORSET_SELECTED : in ui_browser__argv_write() 24 slsmg_write_nstring(*arg, browser->width); in ui_browser__argv_write()
|
/linux-4.1.27/tools/perf/ui/gtk/ |
D | Build | 3 gtk-y += browser.o
|
/linux-4.1.27/Documentation/scheduler/ |
D | sched-design-CFS.txt | 230 # mkdir browser # create "browser" group of tasks 233 # #that of browser group 236 # echo 1024 > browser/cpu.shares 238 # firefox & # Launch firefox and move it to "browser" group 239 # echo <firefox_pid> > browser/tasks
|
/linux-4.1.27/Documentation/hwmon/ |
D | w83627hf | 66 [1] http://www.lm-sensors.org/browser/lm-sensors/trunk/doc/vid
|
/linux-4.1.27/Documentation/RCU/ |
D | rcu.txt | 92 Or point your browser at http://www.rdrop.com/users/paulmck/RCU/.
|
/linux-4.1.27/Documentation/i2c/busses/ |
D | i2c-piix4 | 110 http://www.lm-sensors.org/browser/lm-sensors/trunk/README
|
/linux-4.1.27/drivers/staging/speakup/ |
D | Kconfig | 11 point your browser at <http://www.linux-speakup.org/>.
|
D | spkguide.txt | 791 lynx web browser. You definitely want to turn cursor tracking off when 805 web browser. Speakup does this quite nicely. Suppose you wanted to 806 past the following url into your browser: 820 your browser, or even paste the url on a command line as an argument to 821 your browser.
|
/linux-4.1.27/Documentation/cgroups/ |
D | cgroups.txt | 139 and depending on who is launching the browser he can 144 a separate cgroup for every browser launched and associate it with 149 access temporarily to a student's browser (since it is night and the user
|
/linux-4.1.27/Documentation/fb/ |
D | framebuffer.txt | 318 Point your web browser to http://sourceforge.net/projects/linux-fbdev/ for
|
/linux-4.1.27/Documentation/ |
D | kernel-docs.txt | 636 Description: Another web-based Linux kernel source code browser.
|
/linux-4.1.27/Documentation/filesystems/cifs/ |
D | CHANGES | 439 file browser. Fix DNOTIFY flag mappings. Fix hang (in wait_event
|
/linux-4.1.27/Documentation/laptops/ |
D | thinkpad-acpi.txt | 1368 2 = Web-browser mode
|