Searched defs:chstr (Results 1 - 3 of 3) sorted by relevance
/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/ |
H A D | print_nadv.c | 15 * @v *chstr pointer to first chtype in "string" 16 * @v n max number of chars from chstr to render 19 int waddchnstr ( WINDOW *win, const chtype *chstr, int n ) { argument 23 _wputchstr( win, chstr, NOWRAP, n );
|
H A D | mucurses.c | 16 void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull; 103 * @v *chstr chtype string 107 void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) { argument 108 for ( ; *chstr && n-- ; chstr++ ) { 109 _wputch(win,*chstr,wrap);
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | curses.h | 478 static inline int addchnstr ( const chtype *chstr, int n ) { argument 479 return waddchnstr ( stdscr, chstr, n ); 482 static inline int addchstr ( const chtype *chstr ) { 483 return waddchnstr ( stdscr, chstr, -1 ); 592 static inline int mvaddchnstr ( int y, int x, const chtype *chstr, int n ) { argument 594 ? waddchnstr ( stdscr, chstr, n ) : ERR ); 597 static inline int mvaddchstr ( int y, int x, const chtype *chstr ) { 599 ? waddchnstr ( stdscr, chstr, -1 ) : ERR ); 652 static inline int mvwaddchnstr ( WINDOW *win, int y, int x, const chtype *chstr, int n ) { argument 654 ? waddchnstr ( win, chstr, [all...] |
Completed in 45 milliseconds