Searched refs:chstr (Results 1 - 4 of 4) sorted by relevance

/external/syslinux/gpxe/src/hci/mucurses/
H A Dprint_nadv.c15 * @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 Dmucurses.h19 extern void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
H A Dmucurses.c17 void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
104 * @v *chstr chtype string
108 void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) { argument
109 for ( ; *chstr && n-- ; chstr++ ) {
110 _wputch(win,*chstr,wrap);
/external/syslinux/gpxe/src/include/
H A Dcurses.h478 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 126 milliseconds