Searched refs:waddnstr (Results 1 – 5 of 5) sorted by relevance
/external/syslinux/gpxe/src/include/ |
D | curses.h | 414 extern int waddnstr ( WINDOW *, const char *, int ) __nonnull; 487 return waddnstr ( stdscr, str, n ); in addnstr() 491 return waddnstr ( stdscr, str, -1 ); in addstr() 604 ? waddnstr ( stdscr, str, n ) : ERR ); in mvaddnstr() 609 ? waddnstr ( stdscr, str, -1 ) : ERR ); in mvaddstr() 664 ? waddnstr ( win, str, n ) : ERR ); in mvwaddnstr() 669 ? waddnstr ( win, str, -1 ) : ERR ); in mvwaddstr() 736 return waddnstr ( win, str, -1 ); in waddstr()
|
/external/syslinux/gpxe/src/hci/mucurses/ |
D | print.c | 36 int waddnstr ( WINDOW *win, const char *str, int n ) { in waddnstr() function
|
/external/toybox/kconfig/lxdialog/ |
D | textbox.c | 330 waddnstr(win, line, MIN(strlen(line), width - 2)); in print_line()
|
/external/python/cpython2/Modules/ |
D | _cursesmodule.c | 512 rtn = waddnstr(self->win,str,n); in PyCursesWindow_AddNStr()
|
/external/python/cpython3/Modules/ |
D | _cursesmodule.c | 783 rtn = waddnstr(self->win,str,n); in PyCursesWindow_AddNStr()
|