Home
last modified time | relevance | path

Searched refs:wgetnstr (Results 1 – 17 of 17) sorted by relevance

/NextBSD/contrib/ncurses/ncurses/base/
HDlib_scanw.c50 if (wgetnstr(win, buf, (int) sizeof(buf) - 1) == ERR) in NCURSES_EXPORT()
HDlib_getstr.c217 wgetnstr(WINDOW *win, char *str, int maxlen) in wgetnstr() function
HDlib_getch.c383 rc = wgetnstr(win, buf, MAXCOLUMNS); in recur_wgetnstr()
/NextBSD/contrib/ncurses/misc/
HDncurses.def418 "wgetnstr" @313 NONAME
HDncurses.ref334 "wgetnstr" @313 NONAME ; implemented
/NextBSD/contrib/ncurses/
HDREADME172 toe(1), most of tic(1), trace levels, the HTML intro, wgetnstr() and
HDNEWS432 check if the call to wgetnstr() returned an error. This can happen
727 received, but ERR returned from wgetch or wgetnstr because the screen
2667 window's actual screen when calling wrefresh() and wgetnstr(). That
3754 + modify wgetnstr() to return KEY_RESIZE if a sigwinch occurs. Use
5081 + prevent recursion in wgetch() via wgetnstr() if the connection cannot
5285 + modify lib_getch.c to avoid recursion via wgetnstr() when the input
11011 * added wgetnstr() and modified things accordingly.
/NextBSD/contrib/ncurses/include/
HDcurses.h.in820 extern NCURSES_EXPORT(int) wgetnstr (WINDOW *,char *,int); /* implemented */
1118 #define wgetstr(w, s) wgetnstr(w, s, -1)
1119 #define getnstr(s, n) wgetnstr(stdscr, s, (n))
1253 #define mvwgetnstr(win,y,x,str,n) (wmove((win),(y),(x)) == ERR ? ERR : wgetnstr((win),(str),(n)))
/NextBSD/lib/ncurses/ncurses/
HDMakefile688 curs_getstr.3 wgetnstr.3 \
/NextBSD/contrib/gcc/
HDsys-protos.h1255 extern int wgetnstr(WINDOW *, char *, int);
/NextBSD/contrib/ncurses/ncurses/
HDllib-lncurses1293 #undef wgetnstr
1294 int wgetnstr(
HDcurses.priv.h2067 #define wgetnstr_events(win, str, maxlen, evl) wgetnstr(win, str, maxlen)
HDllib-lncursest1310 #undef wgetnstr
1311 int wgetnstr(
HDllib-lncursesw1809 #undef wgetnstr
1810 int wgetnstr(
HDllib-lncursestw1818 #undef wgetnstr
1819 int wgetnstr(
/NextBSD/contrib/ncurses/doc/
HDhackguide.doc371 With the single exception of character echoes during a wgetnstr() call
/NextBSD/contrib/netbsd-tests/lib/libcurses/slave/
HDcurses_commands.c5123 report_return(wgetnstr(win, string, count)); in cmd_wgetnstr()