/u-boot/common/ |
A D | menu.c | 37 char *title; member 116 if (m->title) { in menu_display() 117 puts(m->title); in menu_display() 363 struct menu *menu_create(char *title, int timeout, int prompt, in menu_create() argument 385 if (title) { in menu_create() 386 m->title = strdup(title); in menu_create() 387 if (!m->title) { in menu_create() 392 m->title = NULL; in menu_create() 414 if (m->title) in menu_destroy() 415 free(m->title); in menu_destroy()
|
/u-boot/cmd/ |
A D | bootmenu.c | 78 puts(entry->title); in bootmenu_print_entry() 270 free(iter->title); in bootmenu_destroy() 315 if (!entry->title) { in bootmenu_create() 320 entry->title[len] = 0; in bootmenu_create() 325 free(entry->title); in bootmenu_create() 357 if (!entry->title) { in bootmenu_create() 364 free(entry->title); in bootmenu_create() 430 char *title = NULL; in bootmenu_show() local 481 title = strdup(iter->title); in bootmenu_show() 495 if (title && command) { in bootmenu_show() [all …]
|
A D | pxe_utils.h | 70 char *title; member
|
A D | pxe_utils.c | 998 err = parse_sliteral(c, &cfg->title); in parse_menu() 1289 if (cfg->title) in destroy_pxe_menu() 1290 free(cfg->title); in destroy_pxe_menu() 1356 m = menu_create(cfg->title, DIV_ROUND_UP(cfg->timeout, 10), in pxe_menu_to_menu()
|
/u-boot/scripts/kconfig/lxdialog/ |
A D | dialog.h | 101 struct dialog_color title; member 206 void print_title(WINDOW *dialog, const char *title, int width); 212 int dialog_yesno(const char *title, const char *prompt, int height, int width); 213 int dialog_msgbox(const char *title, const char *prompt, int height, 219 int dialog_textbox(const char *title, char *tbuf, int initial_height, 222 int dialog_menu(const char *title, const char *prompt, 224 int dialog_checklist(const char *title, const char *prompt, int height, 226 int dialog_inputbox(const char *title, const char *prompt, int height,
|
A D | yesno.c | 29 int dialog_yesno(const char *title, const char *prompt, int height, int width) in dialog_yesno() argument 58 print_title(dialog, title, width); in dialog_yesno()
|
A D | util.c | 23 dlg.title.atr = A_BOLD; in set_mono_theme() 63 DLG_COLOR(title, COLOR_YELLOW, COLOR_WHITE, true); in set_classic_theme() 96 DLG_COLOR(title, COLOR_RED, COLOR_BLACK, false); in set_blackbg_theme() 136 DLG_COLOR(title, COLOR_BLUE, COLOR_WHITE, true); in set_bluetitle_theme() 183 init_one_color(&dlg.title); in init_dialog_colors() 352 void print_title(WINDOW *dialog, const char *title, int width) in print_title() argument 354 if (title) { in print_title() 355 int tlen = MIN(width - 2, strlen(title)); in print_title() 356 wattrset(dialog, dlg.title.atr); in print_title() 358 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen); in print_title()
|
A D | inputbox.c | 31 int dialog_inputbox(const char *title, const char *prompt, int height, int width, in dialog_inputbox() argument 69 print_title(dialog, title, width); in dialog_inputbox()
|
A D | checklist.c | 104 int dialog_checklist(const char *title, const char *prompt, int height, in dialog_checklist() argument 147 print_title(dialog, title, width); in dialog_checklist()
|
A D | textbox.c | 43 int dialog_textbox(const char *title, char *tbuf, int initial_height, in dialog_textbox() argument 117 print_title(dialog, title, width); in dialog_textbox()
|
A D | menubox.c | 171 int dialog_menu(const char *title, const char *prompt, in dialog_menu() argument 211 print_title(dialog, title, width); in dialog_menu()
|
/u-boot/scripts/kconfig/ |
A D | mconf.c | 288 static int show_textbox_ext(const char *title, char *text, int r, int c, 292 static void show_helptext(const char *title, const char *text); 394 struct gstr title; in search_conf() local 401 title = str_new(); in search_conf() 402 str_printf( &title, "Enter (sub)string or regexp to search for " in search_conf() 408 str_get(&title), in search_conf() 417 str_free(&title); in search_conf() 460 str_free(&title); in search_conf() 759 return dialog_textbox(title, text, r, c, keys, vscroll, hscroll, in show_textbox_ext() 769 static void show_helptext(const char *title, const char *text) in show_helptext() argument [all …]
|
A D | nconf.h | 88 const char *title, const char *prompt, 92 const char *title,
|
A D | nconf.gui.c | 359 const char *title, const char *prompt, in dialog_inputbox() argument 389 if (title) in dialog_inputbox() 390 prompt_width = max(prompt_width, strlen(title)); in dialog_inputbox() 414 if (title) in dialog_inputbox() 415 mvwprintw(win, 0, 3, "%s", title); in dialog_inputbox() 551 const char *title, in show_scroll_win() argument 597 mvwprintw(win, 0, 3, " %s ", title); in show_scroll_win()
|
A D | nconf.c | 695 struct gstr title; in search_conf() local 699 title = str_new(); in search_conf() 700 str_printf( &title, "Enter (sub)string or regexp to search for " in search_conf() 706 str_get(&title), in search_conf() 716 str_free(&title); in search_conf() 731 str_free(&title); in search_conf()
|
A D | expr.c | 1284 void *data, tristate pr_type, const char **title) in expr_print_revdep() argument 1287 expr_print_revdep(e->left.expr, fn, data, pr_type, title); in expr_print_revdep() 1288 expr_print_revdep(e->right.expr, fn, data, pr_type, title); in expr_print_revdep() 1290 if (*title) { in expr_print_revdep() 1291 fn(data, NULL, *title); in expr_print_revdep() 1292 *title = NULL; in expr_print_revdep() 1302 tristate pr_type, const char *title) in expr_gstr_print_revdep() argument 1304 expr_print_revdep(e, expr_print_gstr_helper, gs, pr_type, &title); in expr_gstr_print_revdep()
|
A D | expr.h | 315 tristate pr_type, const char *title);
|
/u-boot/doc/sphinx/ |
A D | parse-headers.pl | 325 my $title = $file_in; 326 $title =~ s,.*/,,; 330 print OUT "$title\n"; 331 print OUT "=" x length($title);
|
A D | rstFlatTable.py | 131 title, messages = self.make_title() 139 if title: 140 tableNode.insert(0, title)
|
/u-boot/include/ |
A D | menu.h | 11 struct menu *menu_create(char *title, int timeout, int prompt,
|
/u-boot/board/st/stm32mp1/ |
A D | extlinux.conf | 2 menu title Select the boot mode
|
/u-boot/arch/arm/cpu/armv8/ |
A D | sec_firmware.c | 213 static int sec_firmware_copy_image(const char *title, in sec_firmware_copy_image() argument 216 debug("%s copied to address 0x%p\n", title, (void *)sec_firmware); in sec_firmware_copy_image()
|
/u-boot/doc/usage/ |
A D | bootmenu.rst | 23 bootmenu_<num>="<title>=<commands>" 32 <title>
|
/u-boot/doc/sphinx-static/ |
A D | theme_overrides.css | 45 .toc-title {
|
/u-boot/drivers/net/fsl-mc/ |
A D | mc.c | 63 void dump_ram_words(const char *title, void *addr) in dump_ram_words() argument 68 printf("Dumping beginning of %s (%p):\n", title, addr); in dump_ram_words() 99 #define dump_ram_words(title, addr) argument 107 static int mc_copy_image(const char *title, in mc_copy_image() argument 110 debug("%s copied to address %p\n", title, (void *)mc_ram_addr); in mc_copy_image()
|