/linux-4.4.14/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>
|
/linux-4.4.14/drivers/acpi/acpica/ |
D | rsdump.c | 55 static void acpi_rs_out_string(char *title, char *value); 57 static void acpi_rs_out_integer8(char *title, u8 value); 59 static void acpi_rs_out_integer16(char *title, u16 value); 61 static void acpi_rs_out_integer32(char *title, u32 value); 63 static void acpi_rs_out_integer64(char *title, u64 value); 65 static void acpi_rs_out_title(char *title); 484 static void acpi_rs_out_string(char *title, char *value) in acpi_rs_out_string() argument 486 acpi_os_printf("%27s : %s", title, value); in acpi_rs_out_string() 493 static void acpi_rs_out_integer8(char *title, u8 value) in acpi_rs_out_integer8() argument 495 acpi_os_printf("%27s : %2.2X\n", title, value); in acpi_rs_out_integer8() [all …]
|
D | exdump.c | 58 static void acpi_ex_out_string(char *title, char *value); 60 static void acpi_ex_out_pointer(char *title, void *value); 935 static void acpi_ex_out_string(char *title, char *value) in acpi_ex_out_string() argument 937 acpi_os_printf("%20s : %s\n", title, value); in acpi_ex_out_string() 940 static void acpi_ex_out_pointer(char *title, void *value) in acpi_ex_out_pointer() argument 942 acpi_os_printf("%20s : %p\n", title, value); in acpi_ex_out_pointer()
|
/linux-4.4.14/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 | kvm-test-1-run.sh | 52 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
|
D | parse-console.sh | 31 title="$2" 42 print_warning Assertion failure in $file $title
|
/linux-4.4.14/tools/perf/ui/tui/ |
D | util.c | 72 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()
|
D | progress.c | 27 SLsmg_write_string((char *)p->title); in tui_progress__update()
|
/linux-4.4.14/scripts/kconfig/lxdialog/ |
D | dialog.h | 120 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,
|
D | util.c | 36 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()
|
D | yesno.c | 42 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()
|
D | inputbox.c | 44 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()
|
D | textbox.c | 56 int dialog_textbox(const char *title, char *tbuf, int initial_height, in dialog_textbox() argument 130 print_title(dialog, title, width); in dialog_textbox()
|
D | checklist.c | 117 int dialog_checklist(const char *title, const char *prompt, int height, in dialog_checklist() argument 160 print_title(dialog, title, width); in dialog_checklist()
|
D | menubox.c | 184 int dialog_menu(const char *title, const char *prompt, in dialog_menu() argument 224 print_title(dialog, title, width); in dialog_menu()
|
/linux-4.4.14/arch/um/drivers/ |
D | xterm.c | 21 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()
|
D | line.c | 752 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.4.14/tools/perf/ui/ |
D | browser.h | 20 const char *title; member 46 void __ui_browser__show_title(struct ui_browser *browser, const char *title); 47 void ui_browser__show_title(struct ui_browser *browser, const char *title); 48 int ui_browser__show(struct ui_browser *browser, const char *title, 62 int ui_browser__input_window(const char *title, const char *text, char *input,
|
D | progress.c | 25 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()
|
D | progress.h | 9 const char *title; member 13 void ui_progress__init(struct ui_progress *p, u64 total, const char *title);
|
D | browser.c | 192 ui_browser__show(browser, browser->title, ui_helpline__current); in ui_browser__handle_resize() 248 void __ui_browser__show_title(struct ui_browser *browser, const char *title) in __ui_browser__show_title() argument 252 ui_browser__write_nstring(browser, title, browser->width + 1); in __ui_browser__show_title() 255 void ui_browser__show_title(struct ui_browser *browser, const char *title) in ui_browser__show_title() argument 258 __ui_browser__show_title(browser, title); in ui_browser__show_title() 262 int ui_browser__show(struct ui_browser *browser, const char *title, in ui_browser__show() argument 274 __ui_browser__show_title(browser, title); in ui_browser__show() 276 browser->title = title; in ui_browser__show() 389 __ui_browser__show_title(browser, browser->title); in ui_browser__run()
|
D | util.h | 10 int ui__question_window(const char *title, const char *text,
|
/linux-4.4.14/scripts/kconfig/ |
D | mconf.c | 289 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 …]
|
D | nconf.h | 91 const char *title, const char *prompt, 95 const char *title,
|
D | nconf.gui.c | 358 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()
|
D | nconf.c | 693 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()
|
D | qconf.cc | 1342 char title[256]; in ConfigMainWindow() local 1345 snprintf(title, sizeof(title), "%s%s", in ConfigMainWindow() 1349 setWindowTitle(title); in ConfigMainWindow()
|
D | gconf.c | 392 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.4.14/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
|
/linux-4.4.14/include/linux/ |
D | torture.h | 70 void torture_shutdown_absorb(const char *title); 74 void stutter_wait(const char *title); 84 void torture_kthread_stopping(char *title);
|
/linux-4.4.14/kernel/ |
D | torture.c | 410 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 537 torture_shutdown_absorb(title); in stutter_wait() 696 void torture_kthread_stopping(char *title) in torture_kthread_stopping() argument 700 snprintf(buf, sizeof(buf), "Stopping %s", title); in torture_kthread_stopping() 703 torture_shutdown_absorb(title); in torture_kthread_stopping()
|
/linux-4.4.14/drivers/ata/ |
D | libata-transport.c | 96 #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.4.14/tools/perf/util/ |
D | help.c | 193 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()
|
D | help.h | 26 void list_commands(const char *title, struct cmdnames *main_cmds,
|
/linux-4.4.14/tools/perf/ui/browsers/ |
D | annotate.c | 477 static int sym_title(struct symbol *sym, struct map *map, char *title, in sym_title() argument 480 return snprintf(title, sz, "%s %s", sym->name, map->dso->long_name); in sym_title() 494 char title[SYM_TITLE_MAX_SIZE]; in annotate_browser__callq() local 519 sym_title(ms->sym, ms->map, title, sizeof(title)); in annotate_browser__callq() 520 ui_browser__show_title(&browser->b, title); in annotate_browser__callq() 712 char title[SYM_TITLE_MAX_SIZE]; in annotate_browser__run() local 714 sym_title(sym, ms->map, title, sizeof(title)); in annotate_browser__run() 715 if (ui_browser__show(&browser->b, title, help) < 0) in annotate_browser__run()
|
D | hists.c | 432 char title[160]; in hist_browser__run() local 439 hists__browser_title(browser->hists, hbt, title, sizeof(title)); in hist_browser__run() 441 if (ui_browser__show(&browser->b, title, help) < 0) in hist_browser__run() 466 hbt, title, sizeof(title)); in hist_browser__run() 467 ui_browser__show_title(&browser->b, title); in hist_browser__run() 2163 const char *title = "Available samples"; in perf_evsel_menu__run() local 2167 if (ui_browser__show(&menu->b, title, in perf_evsel_menu__run() 2200 ui_browser__show_title(&menu->b, title); in perf_evsel_menu__run()
|
/linux-4.4.14/Documentation/RCU/ |
D | RTFP.txt | 223 ,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.4.14/arch/arm/probes/kprobes/ |
D | test-core.h | 107 #define TEST_GROUP(title) \ argument 109 verbose(title"\n"); \ 112 #define TESTCASE_START(title) \ argument 119 ".ascii "#title" \n\t" \
|
D | test-core.c | 599 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.4.14/drivers/scsi/ |
D | scsi_transport_fc.c | 80 #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 …]
|
D | scsi_transport_sas.c | 65 #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.4.14/tools/perf/ui/gtk/ |
D | progress.c | 17 GtkWidget *label = gtk_label_new(p->title); in gtk_ui_progress__update()
|
/linux-4.4.14/tools/power/cpupower/bench/ |
D | cpufreq-bench_plot.sh | 70 title[$plots]="$2"
|
/linux-4.4.14/tools/lib/bpf/ |
D | libbpf.c | 1108 const char *title; in bpf_program__title() local 1110 title = prog->section_name; in bpf_program__title() 1112 title = strdup(title); in bpf_program__title() 1113 if (!title) { in bpf_program__title() 1119 return title; in bpf_program__title()
|
/linux-4.4.14/drivers/net/ethernet/cadence/ |
D | macb.h | 672 #define GEM_STAT_TITLE(name, title) GEM_STAT_TITLE_BITS(name, title, 0) argument 673 #define GEM_STAT_TITLE_BITS(name, title, bits) { \ argument 674 .stat_string = title, \
|
/linux-4.4.14/Documentation/ |
D | kernel-docs.txt | 358 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 …]
|
D | kernel-doc-nano-HOWTO.txt | 315 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>.
|
D | intel_txt.txt | 185 title Linux 2.6.29-tip w/ tboot
|
/linux-4.4.14/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)
|
/linux-4.4.14/drivers/s390/crypto/ |
D | zcrypt_api.c | 1184 static void sprinthx(unsigned char *title, struct seq_file *m, in sprinthx() argument 1189 seq_printf(m, "\n%s\n", title); in sprinthx() 1203 static void sprinthx4(unsigned char *title, struct seq_file *m, in sprinthx4() argument 1206 seq_printf(m, "\n%s\n", title); in sprinthx4()
|
/linux-4.4.14/sound/pci/emu10k1/ |
D | emuproc.c | 39 char *title, in snd_emu10k1_proc_spdif_status() argument 51 snd_iprintf(buffer, "\n%s\n", title); in snd_emu10k1_proc_spdif_status()
|
/linux-4.4.14/drivers/staging/speakup/ |
D | spkguide.txt | 1275 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.4.14/drivers/scsi/fcoe/ |
D | fcoe_sysfs.c | 221 #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.4.14/arch/mn10300/kernel/ |
D | gdb-stub.c | 1265 static const char title[] = "Excep ", tbcberr[] = "BCBERR "; in gdbstub() local 1272 ptr = mem2hex(title, ptr, sizeof(title) - 1, 0); in gdbstub()
|
/linux-4.4.14/arch/frv/kernel/ |
D | gdb-stub.c | 1490 static const char title[] = "Break "; in gdbstub() local 1497 ptr = mem2hex(title, ptr, sizeof(title) - 1,0); in gdbstub()
|
/linux-4.4.14/drivers/block/drbd/ |
D | drbd_debugfs.c | 543 const char *title, in seq_print_timing_details() argument 549 seq_printf(m, "%s\n", title); in seq_print_timing_details()
|
/linux-4.4.14/arch/powerpc/platforms/powermac/ |
D | pfunc_core.c | 80 static void print_blob(const char *title, const void *blob, int bytes) 82 printk("%s", title);
|
/linux-4.4.14/drivers/macintosh/ |
D | via-pmu.c | 510 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.4.14/scripts/ |
D | analyze_suspend.py | 2032 <title>AnalyzeSuspend Summary</title>\n\ 2347 <title>AnalyzeSuspend</title>\n\
|
/linux-4.4.14/arch/x86/crypto/ |
D | sha512-ssse3-asm.S | 46 # and search for that title.
|
D | sha512-avx-asm.S | 46 # and search for that title.
|
D | sha256-ssse3-asm.S | 45 # and search for that title.
|
D | sha256-avx-asm.S | 44 # and search for that title.
|
D | sha256-avx2-asm.S | 45 # and search for that title.
|
D | sha512-avx2-asm.S | 46 # and search for that title.
|
/linux-4.4.14/tools/testing/ktest/ |
D | ktest.pl | 1820 if (/^\s*title\s+$grub_menu\s*$/) { 1824 } elsif (/^\s*title\s/) {
|
/linux-4.4.14/Documentation/networking/ |
D | cxgb.txt | 234 title Red Hat Enterprise Linux AS (2.4.21-27.ELsmp)
|
D | packet_mmap.txt | 11 http://wiki.ipxwarzone.com/index.php5?title=Linux_packet_mmap
|
/linux-4.4.14/Documentation/development-process/ |
D | 5.Posting | 169 and the title when citing commits). If a problem is associated with
|
/linux-4.4.14/Documentation/kbuild/ |
D | kconfig-language.txt | 340 This sets the config program's title bar if the config program chooses
|
/linux-4.4.14/Documentation/cgroups/ |
D | memory.txt | 16 see patch's title and function names tend to use "memcg".
|
/linux-4.4.14/Documentation/cdrom/ |
D | cdrom-standard.tex | 24 \title{A \linux\ \cdrom\ standard}
|