Searched refs:stdscr (Results 1 - 25 of 48) sorted by relevance

12

/freebsd-current/contrib/nvi/cl/
H A Dcl_funcs.c43 win = CLSP(sp) ? CLSP(sp) : stdscr;
108 win = CLSP(sp) ? CLSP(sp) : stdscr;
261 win = CLSP(sp) ? CLSP(sp) : stdscr;
286 win = CLSP(sp) ? CLSP(sp) : stdscr;
316 win = CLSP(sp) ? CLSP(sp) : stdscr;
371 tsp->cl_private = subwin(stdscr, tsp->rows, tsp->cols,
445 win = CLSP(sp) ? CLSP(sp) : stdscr;
501 win = CLSP(sp) ? CLSP(sp) : stdscr;
528 win = CLSP(sp) ? CLSP(sp) : stdscr;
547 getyx(stdscr,
[all...]
H A Dcl_screen.c53 win = CLSP(sp) ? CLSP(sp) : stdscr;
277 idlok(stdscr, 1); /* Use hardware insert/delete line. */
280 (void)keypad(stdscr, TRUE);
387 (void)keypad(stdscr, FALSE);
/freebsd-current/contrib/ncurses/ncurses/base/
H A Dlib_initscr.c106 result = stdscr;
H A Dlib_scanw.c85 code = vw_scanw(stdscr, fmt, ap);
111 code = (move(y, x) == OK) ? vw_scanw(stdscr, fmt, ap) : ERR;
H A Dlib_printw.c60 code = vw_printw(stdscr, fmt, argp);
104 code = vw_printw(stdscr, fmt, argp);
H A Dlib_newwin.c70 } else if (window_is(stdscr)) {
71 remove_window(stdscr);
81 } else if (window_is(stdscr)) {
82 remove_window(stdscr);
347 * With the old SVr1-like code, say you have stdscr full of
H A Dlib_set_term.c89 stdscr = StdScreen(newSP);
98 stdscr = 0;
237 stdscr = 0;
753 T(("creating stdscr"));
763 stdscr = StdScreen(sp);
/freebsd-current/contrib/ncurses/form/
H A Dfrm_win.c74 | Return Values : The pointer to the Window or stdscr if there is none.
88 result = (f->win ? f->win : stdscr);
/freebsd-current/usr.sbin/gstat/
H A Dgstat.c213 nodelay(stdscr, 1);
214 intrflush(stdscr, FALSE);
215 keypad(stdscr, TRUE);
243 getyx(stdscr, cury, curx);
244 getmaxyx(stdscr, maxy, maxx);
330 getyx(stdscr, cury, curx);
523 getyx(stdscr, cury, curx);
524 getmaxyx(stdscr, maxy, maxx);
/freebsd-current/lib/libdpv/
H A Dstatus.c89 attrs = getattrs(stdscr);
/freebsd-current/contrib/bsddialog/lib/
H A Dlibbsddialog.c49 error += keypad(stdscr, TRUE);
H A Dlib_util.h71 #define SCREENLINES (getmaxy(stdscr))
72 #define SCREENCOLS (getmaxx(stdscr))
/freebsd-current/contrib/ncurses/panel/
H A Dp_new.c68 Get root (i.e. stdscr's) panel.
69 Establish the pseudo panel for stdscr if necessary.
97 InitUser(stdscr);
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dlib_data.c54 NCURSES_PUBLIC_VAR(stdscr) (void) function
69 NCURSES_EXPORT_VAR(WINDOW *) stdscr = 0;
/freebsd-current/tools/tools/ath/athratestats/
H A Dmain.c391 nodelay(stdscr, 1);
392 intrflush(stdscr, FALSE);
393 keypad(stdscr, TRUE);
/freebsd-current/contrib/netbsd-tests/lib/libcurses/slave/
H A Dslave.c129 stdscr);
132 "asprintf of stdscr failed");
/freebsd-current/usr.bin/systat/
H A Dswap.c61 return (subwin(stdscr, LINES - 3 - 1, 0, MAINWIN_ROW, 0));
H A Dpigs.c65 return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0));
/freebsd-current/contrib/dialog/
H A Dutil.c223 dlg_attrset(stdscr, screen_attr);
224 (void) wmove(stdscr, 0, 1);
225 dlg_print_text(stdscr, dialog_vars.backtitle, COLS - 2, &attr);
227 (void) waddch(stdscr, ' ');
228 (void) wmove(stdscr, 1, 1);
230 (void) waddch(stdscr, dlg_boxchar(ACS_HLINE));
233 (void) wnoutrefresh(stdscr);
257 dlg_attr_clear(stdscr, LINES, COLS, screen_attr);
424 (void) keypad(stdscr, TRUE);
645 werase(stdscr);
[all...]
H A Dmixedgauge.c304 nodelay(stdscr, TRUE);
369 nodelay(stdscr, FALSE);
H A Darrows.c112 bool is_toplevel = (wgetparent(win) == stdscr);
H A Dtrace.c106 while (top != 0 && top != stdscr) {
/freebsd-current/sys/teken/demo/
H A Dteken_demo.c122 getyx(stdscr, y, x);
239 keypad(stdscr, value ? TRUE : FALSE);
/freebsd-current/contrib/ee/
H A Dnew_curse.c88 WINDOW *stdscr; variable
761 copy_window(stdscr, local_std);
764 delwin(stdscr);
767 stdscr = local_std;
1013 stdscr = newwin(LINES, COLS, 0, 0);
1015 wmove(stdscr, 0, 0);
1016 werase(stdscr);
2361 in_char = wgetch(stdscr);
2815 keypad(stdscr, FALSE);
2819 delwin(stdscr);
[all...]
H A Dnew_curse.h183 extern WINDOW *stdscr;

Completed in 169 milliseconds

12