Searched refs:stdscr (Results 1 - 6 of 6) sorted by relevance
/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/ |
H A D | wininit.c | 15 * @ret *win return pointer to stdscr 20 stdscr->scr->init( stdscr->scr ); 21 stdscr->height = LINES; 22 stdscr->width = COLS; 24 return stdscr; 35 stdscr->scr->exit( stdscr->scr );
|
H A D | windows.c | 34 wmove ( stdscr, 0, 0 ); 125 if ( ( (unsigned)( begin_y + nlines ) > stdscr->height ) && 126 ( (unsigned)( begin_x + ncols ) > stdscr->width ) ) 132 win->scr = stdscr->scr; 133 win->parent = stdscr;
|
H A D | slk.c | 58 functions - since this technically isn't part of stdscr, I think 63 _store_curs_pos ( stdscr, &slks->saved_cursor ); 64 wattr_get ( stdscr, &slks->saved_attrs, &slks->saved_pair, NULL ); 66 wmove ( stdscr, LINES, 0 ); 67 wattrset ( stdscr, slks->attrs ); 72 wattr_set ( stdscr, slks->saved_attrs, slks->saved_pair, NULL ); 73 _restore_curs_pos ( stdscr, &slks->saved_cursor ); 107 _wputstr ( stdscr, str, NOWRAP, slks->max_label_len ); 211 wclrtoeol ( stdscr ); 327 _wputch ( stdscr, space_c [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/util/ |
H A D | mucurses_test.c | 13 werase(stdscr); 14 box( stdscr, '|', '-' ); 17 mvwprintw( stdscr, 3, 5, "password is \"%s\"", secret ); 20 stdscr->scr->exit(stdscr->scr); 31 secret = newwin( stdscr->height / 2, 32 stdscr->width / 2, 33 stdscr->height / 4, 34 stdscr->width / 4 );
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | curses.h | 97 #define stdscr ( &_stdscr ) macro 475 return waddch( stdscr, ch ); 479 return waddchnstr ( stdscr, chstr, n ); 483 return waddchnstr ( stdscr, chstr, -1 ); 487 return waddnstr ( stdscr, str, n ); 491 return waddnstr ( stdscr, str, -1 ); 495 return wattroff ( stdscr, attrs ); 499 return wattron ( stdscr, attrs ); 503 return wattrset ( stdscr, attrs ); 507 return wattr_get ( stdscr, attr [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/widgets/ |
H A D | editbox.c | 51 box->win = ( win ? win : stdscr ); 99 box->win = stdscr;
|
Completed in 50 milliseconds