Home
last modified time | relevance | path

Searched full:stdscr (Results 1 – 13 of 13) sorted by relevance

/openbmc/u-boot/scripts/kconfig/lxdialog/
H A Dyesno.c35 if (getmaxy(stdscr) < (height + YESNO_HEIGTH_MIN)) in dialog_yesno()
37 if (getmaxx(stdscr) < (width + YESNO_WIDTH_MIN)) in dialog_yesno()
41 x = (getmaxx(stdscr) - width) / 2; in dialog_yesno()
42 y = (getmaxy(stdscr) - height) / 2; in dialog_yesno()
44 draw_shadow(stdscr, y, x, height, width); in dialog_yesno()
H A Dutil.c246 lines = getmaxy(stdscr); in dialog_clear()
247 columns = getmaxx(stdscr); in dialog_clear()
249 attr_clear(stdscr, lines, columns, dlg.screen.atr); in dialog_clear()
255 wattrset(stdscr, dlg.screen.atr); in dialog_clear()
256 mvwaddstr(stdscr, 0, 1, (char *)dlg.backtitle); in dialog_clear()
263 wmove(stdscr, 1, 1); in dialog_clear()
266 waddstr(stdscr, ellipsis); in dialog_clear()
272 waddch(stdscr, ACS_RARROW); in dialog_clear()
277 waddch(stdscr, ' '); in dialog_clear()
282 waddstr(stdscr, pos->text + skip); in dialog_clear()
[all …]
H A Dinputbox.c46 if (getmaxy(stdscr) <= (height - INPUTBOX_HEIGTH_MIN)) in dialog_inputbox()
48 if (getmaxx(stdscr) <= (width - INPUTBOX_WIDTH_MIN)) in dialog_inputbox()
52 x = (getmaxx(stdscr) - width) / 2; in dialog_inputbox()
53 y = (getmaxy(stdscr) - height) / 2; in dialog_inputbox()
55 draw_shadow(stdscr, y, x, height, width); in dialog_inputbox()
H A Dchecklist.c122 if (getmaxy(stdscr) < (height + CHECKLIST_HEIGTH_MIN)) in dialog_checklist()
124 if (getmaxx(stdscr) < (width + CHECKLIST_WIDTH_MIN)) in dialog_checklist()
130 x = (getmaxx(stdscr) - width) / 2; in dialog_checklist()
131 y = (getmaxy(stdscr) - height) / 2; in dialog_checklist()
133 draw_shadow(stdscr, y, x, height, width); in dialog_checklist()
H A Dmenubox.c181 height = getmaxy(stdscr); in dialog_menu()
182 width = getmaxx(stdscr); in dialog_menu()
193 x = (getmaxx(stdscr) - width) / 2; in dialog_menu()
194 y = (getmaxy(stdscr) - height) / 2; in dialog_menu()
196 draw_shadow(stdscr, y, x, height, width); in dialog_menu()
H A Dtextbox.c69 getmaxyx(stdscr, height, width); in dialog_textbox()
88 x = (getmaxx(stdscr) - width) / 2; in dialog_textbox()
89 y = (getmaxy(stdscr) - height) / 2; in dialog_textbox()
91 draw_shadow(stdscr, y, x, height, width); in dialog_textbox()
/openbmc/u-boot/scripts/kconfig/
H A Dnconf.gui.c159 win = stdscr; in print_in_middle()
280 y = (getmaxy(stdscr)-(msg_lines+4))/2; in btn_dialog()
281 x = (getmaxx(stdscr)-(total_width+4))/2; in btn_dialog()
374 getmaxyx(stdscr, lines, columns); in dialog_inputbox()
567 getmaxyx(stdscr, lines, columns); in show_scroll_win()
H A Dnconf.c370 int lines = getmaxy(stdscr); in print_function_line()
960 print_in_middle(stdscr, 1, 0, getmaxx(stdscr), in show_menu()
1463 getmaxyx(stdscr, lines, columns); in setup_windows()
1508 keypad(stdscr, TRUE); in main()
1511 getmaxyx(stdscr, lines, columns); in main()
1519 notimeout(stdscr, FALSE); in main()
H A Dmconf.c793 help.max_width = getmaxx(stdscr) - 10; in show_help()
/openbmc/qemu/ui/
H A Dcurses.c326 wnoutrefresh(stdscr); in curses_refresh()
748 initscr(); noecho(); intrflush(stdscr, FALSE); in curses_setup()
749 nodelay(stdscr, TRUE); nonl(); keypad(stdscr, TRUE); in curses_setup()
750 start_color(); raw(); scrollok(stdscr, FALSE); in curses_setup()
/openbmc/openbmc-tools/witherspoon-debug/
HDlibncurses.so.5.9 ... so.6 _nc_scroll_optimize _nc_hash_map _nc_doalloc _nc_scrolln SP _nc_oldnums cur_term stdscr free malloc memset calloc _nc_make_oldhash _nc_scroll_oldhash memmove _nc_render _nc_waddch_nosync unctrl ...
HDlibncursesw.so.5.9 ... so.6 _nc_scroll_optimize _nc_hash_map _nc_doalloc _nc_scrolln SP _nc_oldnums cur_term stdscr free malloc memset calloc _nc_make_oldhash _nc_scroll_oldhash memmove wscrl _nc_render _nc_build_wch ...
/openbmc/openbmc/poky/bitbake/lib/bb/ui/
H A Dncurses.py190 def main(self, stdscr, server, eventHandler, params): argument
192 height, width = stdscr.getmaxyx()