| /rk3399_rockchip-uboot/cmd/ |
| H A D | bootmenu.c | 28 char *title; /* title of entry */ member 75 puts(entry->title); in bootmenu_print_entry() 240 free(iter->title); in bootmenu_destroy() 279 entry->title = malloc(len + 1); in bootmenu_create() 280 if (!entry->title) { in bootmenu_create() 284 memcpy(entry->title, option, len); in bootmenu_create() 285 entry->title[len] = 0; in bootmenu_create() 290 free(entry->title); in bootmenu_create() 321 entry->title = strdup("U-Boot console"); in bootmenu_create() 322 if (!entry->title) { in bootmenu_create() [all …]
|
| H A D | pxe.c | 499 char *title; member 1134 err = parse_sliteral(c, &cfg->title); in parse_menu() 1390 if (cfg->title) in destroy_pxe_menu() 1391 free(cfg->title); in destroy_pxe_menu() 1457 m = menu_create(cfg->title, cfg->timeout, cfg->prompt, label_print, in pxe_menu_to_menu()
|
| /rk3399_rockchip-uboot/common/ |
| H A D | menu.c | 37 char *title; member 118 if (m->title) { in menu_display() 119 puts(m->title); in menu_display() 361 struct menu *menu_create(char *title, int timeout, int prompt, in menu_create() argument 380 if (title) { in menu_create() 381 m->title = strdup(title); in menu_create() 382 if (!m->title) { in menu_create() 387 m->title = NULL; in menu_create() 409 if (m->title) in menu_destroy() 410 free(m->title); in menu_destroy()
|
| /rk3399_rockchip-uboot/scripts/kconfig/lxdialog/ |
| H A D | dialog.h | 108 struct dialog_color title; member 213 void print_title(WINDOW *dialog, const char *title, int width); 219 int dialog_yesno(const char *title, const char *prompt, int height, int width); 220 int dialog_msgbox(const char *title, const char *prompt, int height, 226 int dialog_textbox(const char *title, char *tbuf, int initial_height, 229 int dialog_menu(const char *title, const char *prompt, 231 int dialog_checklist(const char *title, const char *prompt, int height, 233 int dialog_inputbox(const char *title, const char *prompt, int height,
|
| H A D | util.c | 24 dlg.title.atr = A_BOLD; in set_mono_theme() 64 DLG_COLOR(title, COLOR_YELLOW, COLOR_WHITE, true); in set_classic_theme() 97 DLG_COLOR(title, COLOR_RED, COLOR_BLACK, false); in set_blackbg_theme() 137 DLG_COLOR(title, COLOR_BLUE, COLOR_WHITE, true); in set_bluetitle_theme() 184 init_one_color(&dlg.title); in init_dialog_colors() 353 void print_title(WINDOW *dialog, const char *title, int width) in print_title() argument 355 if (title) { in print_title() 356 int tlen = MIN(width - 2, strlen(title)); in print_title() 357 wattrset(dialog, dlg.title.atr); in print_title() 359 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen); in print_title()
|
| H A D | yesno.c | 30 int dialog_yesno(const char *title, const char *prompt, int height, int width) in dialog_yesno() argument 59 print_title(dialog, title, width); in dialog_yesno()
|
| H A D | inputbox.c | 32 int dialog_inputbox(const char *title, const char *prompt, int height, int width, in dialog_inputbox() argument 70 print_title(dialog, title, width); in dialog_inputbox()
|
| H A D | textbox.c | 44 int dialog_textbox(const char *title, char *tbuf, int initial_height, in dialog_textbox() argument 118 print_title(dialog, title, width); in dialog_textbox()
|
| H A D | checklist.c | 105 int dialog_checklist(const char *title, const char *prompt, int height, in dialog_checklist() argument 148 print_title(dialog, title, width); in dialog_checklist()
|
| H A D | menubox.c | 172 int dialog_menu(const char *title, const char *prompt, in dialog_menu() argument 212 print_title(dialog, title, width); in dialog_menu()
|
| /rk3399_rockchip-uboot/scripts/kconfig/ |
| H A 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 …]
|
| H A D | nconf.h | 91 const char *title, const char *prompt, 95 const char *title,
|
| H A D | nconf.gui.c | 358 const char *title, const char *prompt, in dialog_inputbox() argument 388 if (title) in dialog_inputbox() 389 prompt_width = max(prompt_width, strlen(title)); in dialog_inputbox() 413 if (title) in dialog_inputbox() 414 mvwprintw(win, 0, 3, "%s", title); in dialog_inputbox() 550 const char *title, in show_scroll_win() argument 596 mvwprintw(win, 0, 3, " %s ", title); in show_scroll_win()
|
| H 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()
|
| H A D | qconf.cc | 1350 char title[256]; in ConfigMainWindow() local 1353 snprintf(title, sizeof(title), "%s%s", in ConfigMainWindow() 1357 setWindowTitle(title); in ConfigMainWindow()
|
| H A 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()
|
| /rk3399_rockchip-uboot/include/ |
| H A D | menu.h | 12 struct menu *menu_create(char *title, int timeout, int prompt,
|
| /rk3399_rockchip-uboot/doc/ |
| H A D | README.bootmenu | 25 bootmenu_<num>="<title>=<commands>" 32 <title> is the text of the menu entry shown on the console 38 (title and commands are separated by first appearance of '='
|
| H A D | README.pxe | 115 menu title <string> - sets a title for the menu of labels being displayed. 174 menu title Linux selections
|
| H A D | README.menu | 42 struct menu *menu_create(char *title, int timeout, int prompt,
|
| H A D | README.distro | 99 menu title Fedora Boot Options.
|
| /rk3399_rockchip-uboot/arch/arm/cpu/armv8/ |
| H A D | sec_firmware.c | 108 static int sec_firmware_copy_image(const char *title, in sec_firmware_copy_image() argument 111 debug("%s copied to address 0x%p\n", title, (void *)sec_firmware); in sec_firmware_copy_image()
|
| /rk3399_rockchip-uboot/drivers/net/fsl-mc/ |
| H A D | mc.c | 49 void dump_ram_words(const char *title, void *addr) in dump_ram_words() argument 54 printf("Dumping beginning of %s (%p):\n", title, addr); in dump_ram_words() 85 #define dump_ram_words(title, addr) argument 94 static int mc_copy_image(const char *title, in mc_copy_image() argument 97 debug("%s copied to address %p\n", title, (void *)mc_ram_addr); in mc_copy_image()
|
| /rk3399_rockchip-uboot/tools/buildman/ |
| H A D | kconfiglib.py | 745 menu.title = tokens.get_next() 2548 return self.title 2619 "Title : " + self.title, 2635 self.title = None 2661 append_fn("\n#\n# {0}\n#".format(self.title))
|
| /rk3399_rockchip-uboot/tools/patman/ |
| H A D | README | 192 This is the patch set title
|