/tools/perf/Documentation/ |
D | asciidoc.conf | 34 <example><title>{title}</title> 44 {title#}</example> 51 <example><title>{title}</title> 55 {title#}</example> 58 <formalpara{id? id="{id}"}><title>{title}</title><para> 59 {title%}<literallayout{id? id="{id}"}> 60 {title#}<literallayout> 63 {title#}</para></formalpara> 64 {title%}<simpara></simpara>
|
/tools/testing/selftests/rcutorture/bin/ |
D | parse-torture.sh | 32 title="$2" 44 echo $title unreadable torture output file: $file 53 print_bug $title FAILURE, $nerrs instances 88 print_warning $title $title `cat $T.seq` 95 print_warning HOTPLUG FAILURES $title `cat $T.seq` 99 …echo $title no success message, `grep --binary-files=text 'ver:' $file | wc -l` successful version… 102 print_warning $title `cat $T.seq`
|
D | kvm-recheck-lock.sh | 40 title="$configfile ------- $ncs acquisitions/releases" 48 title="$title ($ncsps per second)" 50 echo $title
|
D | parse-build.sh | 30 title=$2 41 print_bug $title no build 47 print_bug $title build errors: 58 print_warning $title build errors:
|
D | kvm-recheck-rcu.sh | 41 title="$configfile ------- $ngps grace periods" 49 title="$title ($ngpsps per second)" 51 echo $title
|
D | parse-console.sh | 28 title="$2" 39 print_warning Assertion failure in $file $title
|
D | kvm-test-1-run.sh | 50 title=`echo $config_template | sed -e 's/^.*\///'` 119 parse-build.sh $resdir/Make.out $title 272 parse-torture.sh $resdir/console.log $title 273 parse-console.sh $resdir/console.log $title
|
/tools/perf/ui/tui/ |
D | util.c | 73 int ui_browser__input_window(const char *title, const char *text, char *input, in ui_browser__input_window() argument 105 if (title) { in ui_browser__input_window() 107 SLsmg_write_string((char *)title); in ui_browser__input_window() 165 int ui__question_window(const char *title, const char *text, in ui__question_window() argument 197 if (title) { in ui__question_window() 199 SLsmg_write_string((char *)title); in ui__question_window() 227 static int __ui__warning(const char *title, const char *format, va_list args) in __ui__warning() argument 234 key = ui__question_window(title, s, "Press any key...", 0); in __ui__warning() 239 fprintf(stderr, "%s\n", title); in __ui__warning()
|
D | progress.c | 28 SLsmg_write_string((char *)p->title); in tui_progress__update()
|
/tools/perf/ui/ |
D | progress.c | 31 void ui_progress__init(struct ui_progress *p, u64 total, const char *title) in ui_progress__init() argument 36 p->title = title; in ui_progress__init()
|
D | browser.h | 21 const char *title; member 49 void __ui_browser__show_title(struct ui_browser *browser, const char *title); 50 void ui_browser__show_title(struct ui_browser *browser, const char *title); 51 int ui_browser__show(struct ui_browser *browser, const char *title, 65 int ui_browser__input_window(const char *title, const char *text, char *input,
|
D | progress.h | 10 const char *title; member 14 void ui_progress__init(struct ui_progress *p, u64 total, const char *title);
|
D | browser.c | 196 ui_browser__show(browser, browser->title, ui_helpline__current); in ui_browser__handle_resize() 252 void __ui_browser__show_title(struct ui_browser *browser, const char *title) in __ui_browser__show_title() argument 256 ui_browser__write_nstring(browser, title, browser->width + 1); in __ui_browser__show_title() 259 void ui_browser__show_title(struct ui_browser *browser, const char *title) in ui_browser__show_title() argument 262 __ui_browser__show_title(browser, title); in ui_browser__show_title() 266 int ui_browser__show(struct ui_browser *browser, const char *title, in ui_browser__show() argument 278 __ui_browser__show_title(browser, title); in ui_browser__show() 280 browser->title = title; in ui_browser__show() 393 __ui_browser__show_title(browser, browser->title); in ui_browser__run()
|
D | util.h | 11 int ui__question_window(const char *title, const char *text,
|
/tools/vm/ |
D | slabinfo-gnuplot.sh | 96 set style histogram columnstacked title textcolor lt -1 99 set key left above Left title reverse 101 plot "$file" $range u 2$xtic title 'SIZE' with boxes,\ 102 '' $range u 3 title 'LOSS' with boxes 138 set key left above Left title reverse
|
/tools/lib/subcmd/ |
D | help.c | 229 void list_commands(const char *title, struct cmdnames *main_cmds, in list_commands() argument 243 printf("available %s in '%s'\n", title, exec_path); in list_commands() 245 mput_char('-', strlen(title) + strlen(exec_path)); in list_commands() 253 printf("%s available from elsewhere on your $PATH\n", title); in list_commands() 255 mput_char('-', strlen(title)); in list_commands()
|
D | help.h | 33 void list_commands(const char *title, struct cmdnames *main_cmds,
|
/tools/perf/ui/browsers/ |
D | hists.h | 25 int (*title)(struct hist_browser *browser, member
|
D | annotate.c | 540 static int sym_title(struct symbol *sym, struct map *map, char *title, in sym_title() argument 543 return snprintf(title, sz, "%s %s", sym->name, map->dso->long_name); in sym_title() 557 char title[SYM_TITLE_MAX_SIZE]; in annotate_browser__callq() local 582 sym_title(ms->sym, ms->map, title, sizeof(title)); in annotate_browser__callq() 583 ui_browser__show_title(&browser->b, title); in annotate_browser__callq() 777 char title[SYM_TITLE_MAX_SIZE]; in annotate_browser__run() local 779 sym_title(sym, ms->map, title, sizeof(title)); in annotate_browser__run() 780 if (ui_browser__show(&browser->b, title, help) < 0) in annotate_browser__run()
|
D | hists.c | 683 return browser->title ? browser->title(browser, bf, size) : 0; in hist_browser__title() 689 char title[160]; in hist_browser__run() local 696 hist_browser__title(browser, title, sizeof(title)); in hist_browser__run() 698 if (ui_browser__show(&browser->b, title, "%s", help) < 0) in hist_browser__run() 723 hist_browser__title(browser, title, sizeof(title)); in hist_browser__run() 724 ui_browser__show_title(&browser->b, title); in hist_browser__run() 2340 browser->title = perf_evsel_browser_title; in perf_evsel_browser__new() 3348 const char *title = "Available samples"; in perf_evsel_menu__run() local 3352 if (ui_browser__show(&menu->b, title, in perf_evsel_menu__run() 3385 ui_browser__show_title(&menu->b, title); in perf_evsel_menu__run()
|
/tools/perf/ui/gtk/ |
D | progress.c | 18 GtkWidget *label = gtk_label_new(p->title); in gtk_ui_progress__update()
|
/tools/power/cpupower/bench/ |
D | cpufreq-bench_plot.sh | 70 title[$plots]="$2"
|
/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
D | SchedGui.py | 23 def __init__(self, sched_tracer, title, parent = None, id = -1): argument 24 wx.Frame.__init__(self, parent, id, title)
|
/tools/power/pm-graph/ |
D | analyze_boot.py | 44 title = 'BootGraph' variable in SystemValues 543 title = '%s (%0.3fms)' % (l.name, l.length * 1000.0) 545 top, height, width, title, 'x%d'%num) 554 title = '%s (%0.3fms)' % (cg.name, cglen) 557 top, height, width, title, dev['id']+cg.id) 790 print('%s v%s' % (sysvals.title, sysvals.version))
|
/tools/lib/bpf/ |
D | libbpf.c | 1581 const char *title; in bpf_program__title() local 1583 title = prog->section_name; in bpf_program__title() 1585 title = strdup(title); in bpf_program__title() 1586 if (!title) { in bpf_program__title() 1592 return title; in bpf_program__title()
|