Home
last modified time | relevance | path

Searched refs:title (Results 1 – 25 of 37) sorted by relevance

12

/tools/perf/Documentation/
Dasciidoc.conf34 <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/lib/traceevent/Documentation/
Dasciidoc.conf34 <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/lib/perf/Documentation/
Dasciidoc.conf34 <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/perf/ui/
Dprogress.h10 const char *title; member
16 const char *title, bool size);
18 #define ui_progress__init(p, total, title) \ argument
19 __ui_progress__init(p, total, title, false)
21 #define ui_progress__init_size(p, total, title) \ argument
22 __ui_progress__init(p, total, title, true)
Dutil.h11 void __ui__info_window(const char *title, const char *text, const char *exit_msg);
12 void ui__info_window(const char *title, const char *text);
13 int ui__question_window(const char *title, const char *text,
Dprogress.c31 const char *title, bool size) in __ui_progress__init() argument
36 p->title = title; in __ui_progress__init()
Dbrowser.h24 const char *title; member
55 void __ui_browser__show_title(struct ui_browser *browser, const char *title);
56 void ui_browser__show_title(struct ui_browser *browser, const char *title);
57 int ui_browser__show(struct ui_browser *browser, const char *title,
71 int ui_browser__input_window(const char *title, const char *text, char *input,
Dbrowser.c206 ui_browser__show(browser, browser->title, ui_helpline__current); in ui_browser__handle_resize()
262 void __ui_browser__show_title(struct ui_browser *browser, const char *title) in __ui_browser__show_title() argument
266 ui_browser__write_nstring(browser, title, browser->width + 1); in __ui_browser__show_title()
269 void ui_browser__show_title(struct ui_browser *browser, const char *title) in ui_browser__show_title() argument
272 __ui_browser__show_title(browser, title); in ui_browser__show_title()
276 int ui_browser__show(struct ui_browser *browser, const char *title, in ui_browser__show() argument
288 __ui_browser__show_title(browser, title); in ui_browser__show()
290 browser->title = title; in ui_browser__show()
405 __ui_browser__show_title(browser, browser->title); in ui_browser__run()
/tools/testing/selftests/splice/
Dshort_splice_read.sh17 title="$1"
21 echo "$title ..." >&2
30 echo "ok: $title succeeded" >&2
33 echo "FAIL: $title should work" >&2
45 title="$1"
49 echo "$title ..." >&2
58 echo "FAIL: $title unexpectedly worked" >&2
62 echo "ok: $title correctly failed" >&2
/tools/testing/selftests/bpf/prog_tests/
Dreference_tracking.c27 const char *title; in test_reference_tracking() local
30 title = bpf_program__section_name(prog); in test_reference_tracking()
31 if (strstr(title, ".text") != NULL) in test_reference_tracking()
34 if (!test__start_subtest(title)) in test_reference_tracking()
38 if (strstr(title, "err_") != NULL) { in test_reference_tracking()
47 CHECK(err, title, "\n"); in test_reference_tracking()
Dsockopt_multi.c5 static int prog_attach(struct bpf_object *obj, int cgroup_fd, const char *title) in prog_attach() argument
12 err = libbpf_prog_type_by_name(title, &prog_type, &attach_type); in prog_attach()
14 log_err("Failed to deduct types for %s BPF program", title); in prog_attach()
18 prog = bpf_object__find_program_by_title(obj, title); in prog_attach()
20 log_err("Failed to find %s BPF program", title); in prog_attach()
27 log_err("Failed to attach %s BPF program", title); in prog_attach()
34 static int prog_detach(struct bpf_object *obj, int cgroup_fd, const char *title) in prog_detach() argument
41 err = libbpf_prog_type_by_name(title, &prog_type, &attach_type); in prog_detach()
45 prog = bpf_object__find_program_by_title(obj, title); in prog_detach()
Dsockopt_inherit.c139 static int prog_attach(struct bpf_object *obj, int cgroup_fd, const char *title) in prog_attach() argument
146 err = libbpf_prog_type_by_name(title, &prog_type, &attach_type); in prog_attach()
148 log_err("Failed to deduct types for %s BPF program", title); in prog_attach()
152 prog = bpf_object__find_program_by_title(obj, title); in prog_attach()
154 log_err("Failed to find %s BPF program", title); in prog_attach()
161 log_err("Failed to attach %s BPF program", title); in prog_attach()
/tools/perf/ui/tui/
Dutil.c75 int ui_browser__input_window(const char *title, const char *text, char *input, in ui_browser__input_window() argument
107 if (title) { in ui_browser__input_window()
109 SLsmg_write_string((char *)title); in ui_browser__input_window()
167 void __ui__info_window(const char *title, const char *text, const char *exit_msg) in __ui__info_window() argument
198 if (title) { in __ui__info_window()
200 SLsmg_write_string((char *)title); in __ui__info_window()
216 void ui__info_window(const char *title, const char *text) in ui__info_window() argument
219 __ui__info_window(title, text, NULL); in ui__info_window()
224 int ui__question_window(const char *title, const char *text, in ui__question_window() argument
228 __ui__info_window(title, text, exit_msg); in ui__question_window()
[all …]
Dprogress.c25 p->title, buf_cur, buf_tot); in get_title()
30 char buf[100], *title = (char *) p->title; in tui_progress__update() local
44 title = buf; in tui_progress__update()
53 SLsmg_write_string(title); in tui_progress__update()
/tools/testing/selftests/rcutorture/bin/
Dkvm-recheck-lock.sh27 title="$configfile ------- $ncs acquisitions/releases"
35 title="$title ($ncsps per second)"
37 echo $title
Dparse-console.sh16 title="$2"
27 echo $title unreadable console output file: $file
63 print_bug $title FAILURE, $nerrs
100 print_warning $title `cat $T.seq`
107 print_warning HOTPLUG FAILURES $title `cat $T.seq`
111 …echo $title no success message, `grep --binary-files=text 'ver:' $file | wc -l` successful version…
114 print_warning $title `cat $T.seq`
123 print_warning "Assertion failure in $file $title"
Dparse-build.sh17 title=$2
28 print_bug $title no build
34 print_bug $title build errors:
45 print_warning $title build errors:
Dkvm-recheck-rcu.sh33 title="$configfile ------- $ngps GPs"
41 title="$title ($ngpsps/s)"
43 echo $title $stopstate $fwdprog
/tools/vm/
Dslabinfo-gnuplot.sh89 set style histogram columnstacked title textcolor lt -1
92 set key left above Left title reverse
94 plot "$file" $range u 2$xtic title 'SIZE' with boxes,\
95 '' $range u 3 title 'LOSS' with boxes
131 set key left above Left title reverse
/tools/perf/ui/browsers/
Dannotate.c446 static int sym_title(struct symbol *sym, struct map *map, char *title, in sym_title() argument
449 return snprintf(title, sz, "%s %s [Percent: %s]", sym->name, map->dso->long_name, in sym_title()
469 char title[SYM_TITLE_MAX_SIZE]; in annotate_browser__callq() local
491 sym_title(ms->sym, ms->map, title, sizeof(title), browser->opts->percent_type); in annotate_browser__callq()
492 ui_browser__show_title(&browser->b, title); in annotate_browser__callq()
664 static int annotate_browser__show(struct ui_browser *browser, char *title, const char *help) in annotate_browser__show() argument
671 if (ui_browser__show(browser, title, help) < 0) in annotate_browser__show()
726 char title[256]; in annotate_browser__run() local
729 hists__scnprintf_title(hists, title, sizeof(title)); in annotate_browser__run()
730 if (annotate_browser__show(&browser->b, title, help) < 0) in annotate_browser__run()
[all …]
Dhists.h30 int (*title)(struct hist_browser *browser, member
/tools/lib/subcmd/
Dhelp.c241 void list_commands(const char *title, struct cmdnames *main_cmds, in list_commands() argument
255 printf("available %s in '%s'\n", title, exec_path); in list_commands()
257 mput_char('-', strlen(title) + strlen(exec_path)); in list_commands()
265 printf("%s available from elsewhere on your $PATH\n", title); in list_commands()
267 mput_char('-', strlen(title)); in list_commands()
Dhelp.h33 void list_commands(const char *title, struct cmdnames *main_cmds,
/tools/power/cpupower/bench/
Dcpufreq-bench_plot.sh57 title[$plots]="$2"
/tools/perf/ui/gtk/
Dprogress.c17 GtkWidget *label = gtk_label_new(p->title); in gtk_ui_progress__update()

12