Home
last modified time | relevance | path

Searched refs:waddnstr (Results 1 – 5 of 5) sorted by relevance

/external/syslinux/gpxe/src/include/
Dcurses.h414 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/
Dprint.c36 int waddnstr ( WINDOW *win, const char *str, int n ) { in waddnstr() function
/external/toybox/kconfig/lxdialog/
Dtextbox.c330 waddnstr(win, line, MIN(strlen(line), width - 2)); in print_line()
/external/python/cpython2/Modules/
D_cursesmodule.c512 rtn = waddnstr(self->win,str,n); in PyCursesWindow_AddNStr()
/external/python/cpython3/Modules/
D_cursesmodule.c783 rtn = waddnstr(self->win,str,n); in PyCursesWindow_AddNStr()