Home
last modified time | relevance | path

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

/linux-4.1.27/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>
/linux-4.1.27/drivers/acpi/acpica/
Drsdump.c56 static void acpi_rs_out_string(char *title, char *value);
58 static void acpi_rs_out_integer8(char *title, u8 value);
60 static void acpi_rs_out_integer16(char *title, u16 value);
62 static void acpi_rs_out_integer32(char *title, u32 value);
64 static void acpi_rs_out_integer64(char *title, u64 value);
66 static void acpi_rs_out_title(char *title);
485 static void acpi_rs_out_string(char *title, char *value) in acpi_rs_out_string() argument
487 acpi_os_printf("%27s : %s", title, value); in acpi_rs_out_string()
494 static void acpi_rs_out_integer8(char *title, u8 value) in acpi_rs_out_integer8() argument
496 acpi_os_printf("%27s : %2.2X\n", title, value); in acpi_rs_out_integer8()
[all …]
Dexdump.c58 static void acpi_ex_out_string(char *title, char *value);
60 static void acpi_ex_out_pointer(char *title, void *value);
933 static void acpi_ex_out_string(char *title, char *value) in acpi_ex_out_string() argument
935 acpi_os_printf("%20s : %s\n", title, value); in acpi_ex_out_string()
938 static void acpi_ex_out_pointer(char *title, void *value) in acpi_ex_out_pointer() argument
940 acpi_os_printf("%20s : %p\n", title, value); in acpi_ex_out_pointer()
/linux-4.1.27/tools/testing/selftests/rcutorture/bin/
Dparse-torture.sh32 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`
Dkvm-recheck-lock.sh40 title="$configfile ------- $ncs acquisitions/releases"
48 title="$title ($ncsps per second)"
50 echo $title
Dparse-build.sh30 title=$2
41 print_bug $title no build
47 print_bug $title build errors:
58 print_warning $title build errors:
Dkvm-recheck-rcu.sh41 title="$configfile ------- $ngps grace periods"
49 title="$title ($ngpsps per second)"
51 echo $title
Dkvm-test-1-run.sh52 title=`echo $config_template | sed -e 's/^.*\///'`
109 parse-build.sh $resdir/Make.out $title
228 parse-torture.sh $resdir/console.log $title
229 parse-console.sh $resdir/console.log $title
Dparse-console.sh31 title="$2"
42 print_warning Assertion failure in $file $title
/linux-4.1.27/tools/perf/ui/tui/
Dutil.c72 int ui_browser__input_window(const char *title, const char *text, char *input, in ui_browser__input_window() argument
104 if (title) { in ui_browser__input_window()
106 SLsmg_write_string((char *)title); in ui_browser__input_window()
164 int ui__question_window(const char *title, const char *text, in ui__question_window() argument
196 if (title) { in ui__question_window()
198 SLsmg_write_string((char *)title); in ui__question_window()
226 static int __ui__warning(const char *title, const char *format, va_list args) in __ui__warning() argument
233 key = ui__question_window(title, s, "Press any key...", 0); in __ui__warning()
238 fprintf(stderr, "%s\n", title); in __ui__warning()
Dprogress.c27 SLsmg_write_string((char *)p->title); in tui_progress__update()
/linux-4.1.27/scripts/kconfig/lxdialog/
Ddialog.h120 struct dialog_color title; member
225 void print_title(WINDOW *dialog, const char *title, int width);
231 int dialog_yesno(const char *title, const char *prompt, int height, int width);
232 int dialog_msgbox(const char *title, const char *prompt, int height,
238 int dialog_textbox(const char *title, char *tbuf, int initial_height,
241 int dialog_menu(const char *title, const char *prompt,
243 int dialog_checklist(const char *title, const char *prompt, int height,
245 int dialog_inputbox(const char *title, const char *prompt, int height,
Dutil.c36 dlg.title.atr = A_BOLD; in set_mono_theme()
76 DLG_COLOR(title, COLOR_YELLOW, COLOR_WHITE, true); in set_classic_theme()
109 DLG_COLOR(title, COLOR_RED, COLOR_BLACK, false); in set_blackbg_theme()
149 DLG_COLOR(title, COLOR_BLUE, COLOR_WHITE, true); in set_bluetitle_theme()
196 init_one_color(&dlg.title); in init_dialog_colors()
365 void print_title(WINDOW *dialog, const char *title, int width) in print_title() argument
367 if (title) { in print_title()
368 int tlen = MIN(width - 2, strlen(title)); in print_title()
369 wattrset(dialog, dlg.title.atr); in print_title()
371 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen); in print_title()
Dyesno.c42 int dialog_yesno(const char *title, const char *prompt, int height, int width) in dialog_yesno() argument
71 print_title(dialog, title, width); in dialog_yesno()
Dinputbox.c44 int dialog_inputbox(const char *title, const char *prompt, int height, int width, in dialog_inputbox() argument
82 print_title(dialog, title, width); in dialog_inputbox()
Dtextbox.c56 int dialog_textbox(const char *title, char *tbuf, int initial_height, in dialog_textbox() argument
130 print_title(dialog, title, width); in dialog_textbox()
Dchecklist.c117 int dialog_checklist(const char *title, const char *prompt, int height, in dialog_checklist() argument
160 print_title(dialog, title, width); in dialog_checklist()
Dmenubox.c184 int dialog_menu(const char *title, const char *prompt, in dialog_menu() argument
224 print_title(dialog, title, width); in dialog_menu()
/linux-4.1.27/tools/perf/ui/
Dbrowser.h20 const char *title; member
43 void __ui_browser__show_title(struct ui_browser *browser, const char *title);
44 void ui_browser__show_title(struct ui_browser *browser, const char *title);
45 int ui_browser__show(struct ui_browser *browser, const char *title,
59 int ui_browser__input_window(const char *title, const char *text, char *input,
Dprogress.c25 void ui_progress__init(struct ui_progress *p, u64 total, const char *title) in ui_progress__init() argument
30 p->title = title; in ui_progress__init()
Dprogress.h9 const char *title; member
13 void ui_progress__init(struct ui_progress *p, u64 total, const char *title);
Dbrowser.c177 ui_browser__show(browser, browser->title, ui_helpline__current); in ui_browser__handle_resize()
233 void __ui_browser__show_title(struct ui_browser *browser, const char *title) in __ui_browser__show_title() argument
237 slsmg_write_nstring(title, browser->width + 1); in __ui_browser__show_title()
240 void ui_browser__show_title(struct ui_browser *browser, const char *title) in ui_browser__show_title() argument
243 __ui_browser__show_title(browser, title); in ui_browser__show_title()
247 int ui_browser__show(struct ui_browser *browser, const char *title, in ui_browser__show() argument
259 __ui_browser__show_title(browser, title); in ui_browser__show()
261 browser->title = title; in ui_browser__show()
374 __ui_browser__show_title(browser, browser->title); in ui_browser__run()
Dutil.h10 int ui__question_window(const char *title, const char *text,
/linux-4.1.27/arch/um/drivers/
Dxterm.c21 char *title; member
37 .title = opts->xterm_title, in xterm_init()
89 char title[256], file[] = "/tmp/xterm-pipeXXXXXX"; in xterm_open() local
90 char *argv[] = { terminal_emulator, title_switch, title, exec_switch, in xterm_open()
136 sprintf(title, data->title, data->device); in xterm_open()
Dline.c752 char *umid, *title; in add_xterm_umid() local
760 title = kmalloc(len, GFP_KERNEL); in add_xterm_umid()
761 if (title == NULL) { in add_xterm_umid()
766 snprintf(title, len, "%s (%s)", base, umid); in add_xterm_umid()
767 return title; in add_xterm_umid()
/linux-4.1.27/scripts/kconfig/
Dmconf.c289 static int show_textbox_ext(const char *title, char *text, int r, int c,
292 static void show_textbox(const char *title, const char *text, int r, int c);
293 static void show_helptext(const char *title, const char *text);
395 struct gstr title; in search_conf() local
402 title = str_new(); in search_conf()
403 str_printf( &title, _("Enter (sub)string or regexp to search for " in search_conf()
409 str_get(&title), in search_conf()
418 str_free(&title); in search_conf()
461 str_free(&title); in search_conf()
756 static int show_textbox_ext(const char *title, char *text, int r, int c, int in show_textbox_ext() argument
[all …]
Dnconf.h91 const char *title, const char *prompt,
95 const char *title,
Dnconf.gui.c358 const char *title, const char *prompt, in dialog_inputbox() argument
386 if (title) in dialog_inputbox()
387 prompt_width = max(prompt_width, strlen(title)); in dialog_inputbox()
406 if (title) in dialog_inputbox()
407 mvwprintw(win, 0, 3, "%s", title); in dialog_inputbox()
543 const char *title, in show_scroll_win() argument
589 mvwprintw(win, 0, 3, " %s ", title); in show_scroll_win()
Dnconf.c693 struct gstr title; in search_conf() local
697 title = str_new(); in search_conf()
698 str_printf( &title, _("Enter (sub)string or regexp to search for " in search_conf()
704 str_get(&title), in search_conf()
714 str_free(&title); in search_conf()
729 str_free(&title); in search_conf()
Dqconf.cc1280 char title[256]; in ConfigMainWindow() local
1283 snprintf(title, sizeof(title), "%s%s", in ConfigMainWindow()
1291 setCaption(title); in ConfigMainWindow()
Dgconf.c392 static void text_insert_msg(const char *title, const char *message) in text_insert_msg() argument
404 gtk_text_buffer_insert_with_tags(buffer, &end, title, -1, tag1, in text_insert_msg()
/linux-4.1.27/include/linux/
Dtorture.h70 void torture_shutdown_absorb(const char *title);
74 void stutter_wait(const char *title);
84 void torture_kthread_stopping(char *title);
/linux-4.1.27/kernel/
Dtorture.c410 void torture_shutdown_absorb(const char *title) in torture_shutdown_absorb() argument
414 title); in torture_shutdown_absorb()
524 void stutter_wait(const char *title) in stutter_wait() argument
536 torture_shutdown_absorb(title); in stutter_wait()
695 void torture_kthread_stopping(char *title) in torture_kthread_stopping() argument
699 snprintf(buf, sizeof(buf), "Stopping %s", title); in torture_kthread_stopping()
702 torture_shutdown_absorb(title); in torture_kthread_stopping()
/linux-4.1.27/drivers/ata/
Dlibata-transport.c96 #define ata_bitfield_name_match(title, table) \ argument
98 get_ata_##title##_names(u32 table_key, char *buf) \
115 #define ata_bitfield_name_search(title, table) \ argument
117 get_ata_##title##_names(u32 table_key, char *buf) \
453 #define ata_dev_show_class(title, field) \ argument
460 return get_ata_##title##_names(ata_dev->field, buf); \
463 #define ata_dev_attr(title, field) \ argument
464 ata_dev_show_class(title, field) \
/linux-4.1.27/tools/perf/util/
Dhelp.c193 void list_commands(const char *title, struct cmdnames *main_cmds, in list_commands() argument
207 printf("available %s in '%s'\n", title, exec_path); in list_commands()
209 mput_char('-', strlen(title) + strlen(exec_path)); in list_commands()
216 printf("%s available from elsewhere on your $PATH\n", title); in list_commands()
218 mput_char('-', strlen(title)); in list_commands()
Dhelp.h26 void list_commands(const char *title, struct cmdnames *main_cmds,
/linux-4.1.27/tools/perf/ui/browsers/
Dannotate.c438 static int sym_title(struct symbol *sym, struct map *map, char *title, in sym_title() argument
441 return snprintf(title, sz, "%s %s", sym->name, map->dso->long_name); in sym_title()
455 char title[SYM_TITLE_MAX_SIZE]; in annotate_browser__callq() local
480 sym_title(ms->sym, ms->map, title, sizeof(title)); in annotate_browser__callq()
481 ui_browser__show_title(&browser->b, title); in annotate_browser__callq()
673 char title[SYM_TITLE_MAX_SIZE]; in annotate_browser__run() local
675 sym_title(sym, ms->map, title, sizeof(title)); in annotate_browser__run()
676 if (ui_browser__show(&browser->b, title, help) < 0) in annotate_browser__run()
Dhists.c413 char title[160]; in hist_browser__run() local
419 hists__browser_title(browser->hists, hbt, title, sizeof(title)); in hist_browser__run()
421 if (ui_browser__show(&browser->b, title, in hist_browser__run()
447 hbt, title, sizeof(title)); in hist_browser__run()
448 ui_browser__show_title(&browser->b, title); in hist_browser__run()
1883 const char *title = "Available samples"; in perf_evsel_menu__run() local
1887 if (ui_browser__show(&menu->b, title, in perf_evsel_menu__run()
1920 ui_browser__show_title(&menu->b, title); in perf_evsel_menu__run()
/linux-4.1.27/Documentation/RCU/
DRTFP.txt223 ,title="Concurrent Manipulation of Binary Search Trees"
241 ,title="Concurrency Control in a Dynamic Search Structure"
277 ,title="Concurrency Control in a Dynamic Search Structure"
335 ,title = {Distributed programming in {Argus}}
356 ,title="Passive Serialization in a Multitasking Environment"
367 ,title="Concurrent Maintenance of Skip Lists"
385 ,title="Concurrent Programming, Principles, and Practices"
401 ,title="Synthesis: An Efficient Implementation of Fundamental Operating
416 ,title="Avoid Read-Side Locking Via Delayed Free"
487 ,title="Apparatus and Method for Achieving Reduced Overhead Mutual
[all …]
/linux-4.1.27/arch/arm/probes/kprobes/
Dtest-core.h107 #define TEST_GROUP(title) \ argument
109 verbose(title"\n"); \
112 #define TESTCASE_START(title) \ argument
119 ".ascii "#title" \n\t" \
Dtest-core.c599 const char *title; member
632 pr_info(" %dns for kprobe %s\n", ret, b->title); in run_benchmarks()
1369 static uintptr_t __used kprobes_test_case_start(const char **title, void *stack) in kprobes_test_case_start() argument
1375 current_title = *title++; in kprobes_test_case_start()
1376 args = (struct test_arg *)title; in kprobes_test_case_start()
/linux-4.1.27/drivers/scsi/
Dscsi_transport_fc.c80 #define fc_enum_name_search(title, table_type, table) \ argument
81 static const char *get_fc_##title##_name(enum table_type table_key) \
95 #define fc_enum_name_match(title, table_type, table) \ argument
96 static int get_fc_##title##_match(const char *table_key, \
218 #define fc_bitfield_name_search(title, table) \ argument
220 get_fc_##title##_names(u32 table_key, char *buf) \
775 #define fc_private_rport_rd_enum_attr(title, maxlen) \ argument
777 show_fc_rport_##title (struct device *dev, \
782 name = get_fc_##title##_name(rport->title); \
787 static FC_DEVICE_ATTR(rport, title, S_IRUGO, \
[all …]
Dscsi_transport_sas.c65 #define sas_bitfield_name_match(title, table) \ argument
67 get_sas_##title##_names(u32 table_key, char *buf) \
84 #define sas_bitfield_name_set(title, table) \ argument
86 set_sas_##title##_names(u32 *table_key, const char *buf) \
102 #define sas_bitfield_name_search(title, table) \ argument
104 get_sas_##title##_names(u32 table_key, char *buf) \
/linux-4.1.27/tools/power/cpupower/bench/
Dcpufreq-bench_plot.sh70 title[$plots]="$2"
/linux-4.1.27/tools/perf/ui/gtk/
Dprogress.c17 GtkWidget *label = gtk_label_new(p->title); in gtk_ui_progress__update()
/linux-4.1.27/drivers/net/ethernet/cadence/
Dmacb.h668 #define GEM_STAT_TITLE(name, title) GEM_STAT_TITLE_BITS(name, title, 0) argument
669 #define GEM_STAT_TITLE_BITS(name, title, bits) { \ argument
670 .stat_string = title, \
/linux-4.1.27/Documentation/
Dkernel-docs.txt358 Description: The title says it all: document describing the
395 Description: The title says it all.
401 Description: The title says it all.
407 Description: The title says it all.
413 Description: The title says it all.
419 Description: The title still says it all.
425 Description: The title says it all.
432 Description: The title says it all.
439 Description: The title says it all.
445 Description: The title says it all.
[all …]
Dkernel-doc-nano-HOWTO.txt315 This is done by using a DOC: section keyword with a section title. E.g.:
352 !P<filename> <section title> is replaced by the contents of the DOC:
353 section titled <section title> from <filename>.
354 Spaces are allowed in <section title>; do not quote the <section title>.
Dintel_txt.txt185 title Linux 2.6.29-tip w/ tboot
/linux-4.1.27/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
DSchedGui.py23 def __init__(self, sched_tracer, title, parent = None, id = -1): argument
24 wx.Frame.__init__(self, parent, id, title)
/linux-4.1.27/drivers/s390/crypto/
Dzcrypt_api.c1183 static void sprinthx(unsigned char *title, struct seq_file *m, in sprinthx() argument
1188 seq_printf(m, "\n%s\n", title); in sprinthx()
1202 static void sprinthx4(unsigned char *title, struct seq_file *m, in sprinthx4() argument
1207 seq_printf(m, "\n%s\n", title); in sprinthx4()
/linux-4.1.27/sound/pci/emu10k1/
Demuproc.c40 char *title, in snd_emu10k1_proc_spdif_status() argument
52 snd_iprintf(buffer, "\n%s\n", title); in snd_emu10k1_proc_spdif_status()
/linux-4.1.27/drivers/staging/speakup/
Dspkguide.txt1275 The "Title Page" means, for a printed book, the title page itself,
1277 this License requires to appear in the title page. For works in
1278 formats which do not have any title page as such, "Title Page" means
1279 the text near the most prominent appearance of the work's title,
1283 title either is precisely XYZ or contains XYZ in parentheses following
1323 the full title with all words of the title equally prominent and
1326 the title of the Document and satisfy these conditions, can be treated
1361 A. Use in the Title Page (and on the covers, if any) a title distinct
1364 of the Document). You may use the same title as a previous version
1383 to it an item stating at least the title, year, new authors, and
[all …]
/linux-4.1.27/drivers/scsi/fcoe/
Dfcoe_sysfs.c221 #define fcoe_enum_name_search(title, table_type, table) \ argument
222 static const char *get_fcoe_##title##_name(enum table_type table_key) \
/linux-4.1.27/arch/mn10300/kernel/
Dgdb-stub.c1265 static const char title[] = "Excep ", tbcberr[] = "BCBERR "; in gdbstub() local
1272 ptr = mem2hex(title, ptr, sizeof(title) - 1, 0); in gdbstub()
/linux-4.1.27/arch/frv/kernel/
Dgdb-stub.c1490 static const char title[] = "Break "; in gdbstub() local
1497 ptr = mem2hex(title, ptr, sizeof(title) - 1,0); in gdbstub()
/linux-4.1.27/drivers/block/drbd/
Ddrbd_debugfs.c551 const char *title, in seq_print_timing_details() argument
557 seq_printf(m, "%s\n", title); in seq_print_timing_details()
/linux-4.1.27/arch/powerpc/platforms/powermac/
Dpfunc_core.c80 static void print_blob(const char *title, const void *blob, int bytes)
82 printk("%s", title);
/linux-4.1.27/drivers/macintosh/
Dvia-pmu.c510 char title[16]; in via_pmu_dev_init() local
511 sprintf(title, "battery_%ld", i); in via_pmu_dev_init()
512 proc_pmu_batt[i] = proc_create_data(title, 0, proc_pmu_root, in via_pmu_dev_init()
/linux-4.1.27/scripts/
Danalyze_suspend.py2032 <title>AnalyzeSuspend Summary</title>\n\
2347 <title>AnalyzeSuspend</title>\n\
/linux-4.1.27/arch/x86/crypto/
Dsha512-avx-asm.S46 # and search for that title.
Dsha512-ssse3-asm.S46 # and search for that title.
Dsha256-avx-asm.S44 # and search for that title.
Dsha256-ssse3-asm.S45 # and search for that title.
Dsha256-avx2-asm.S45 # and search for that title.
Dsha512-avx2-asm.S46 # and search for that title.
/linux-4.1.27/tools/testing/ktest/
Dktest.pl1820 if (/^\s*title\s+$grub_menu\s*$/) {
1824 } elsif (/^\s*title\s/) {
/linux-4.1.27/Documentation/networking/
Dcxgb.txt234 title Red Hat Enterprise Linux AS (2.4.21-27.ELsmp)
Dpacket_mmap.txt11 http://wiki.ipxwarzone.com/index.php5?title=Linux_packet_mmap
/linux-4.1.27/Documentation/kbuild/
Dkconfig-language.txt340 This sets the config program's title bar if the config program chooses
/linux-4.1.27/Documentation/development-process/
D5.Posting169 and the title when citing commits). If a problem is associated with
/linux-4.1.27/Documentation/cgroups/
Dmemory.txt16 see patch's title and function names tend to use "memcg".
/linux-4.1.27/Documentation/cdrom/
Dcdrom-standard.tex24 \title{A \linux\ \cdrom\ standard}