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

12

/freebsd-11.0-release/contrib/ncurses/ncurses/base/
H A Dlib_scanw.c65 code = vwscanw(stdscr, fmt, ap);
91 code = (move(y, x) == OK) ? vwscanw(stdscr, fmt, ap) : ERR;
H A Dlib_initscr.c99 result = stdscr;
H A Dlib_printw.c59 code = vwprintw(stdscr, fmt, argp);
102 code = vwprintw(stdscr, fmt, argp);
H A Dlib_newwin.c69 } else if (window_is(stdscr)) {
70 remove_window(stdscr);
80 } else if (window_is(stdscr)) {
81 remove_window(stdscr);
342 * With the old SVr1-like code, say you have stdscr full of
H A Dlib_set_term.c79 stdscr = StdScreen(newSP);
88 stdscr = 0;
204 stdscr = 0;
671 T(("creating stdscr"));
680 stdscr = StdScreen(sp);
/freebsd-11.0-release/contrib/nvi/cl/
H A Dcl_funcs.c47 win = CLSP(sp) ? CLSP(sp) : stdscr;
112 win = CLSP(sp) ? CLSP(sp) : stdscr;
265 win = CLSP(sp) ? CLSP(sp) : stdscr;
290 win = CLSP(sp) ? CLSP(sp) : stdscr;
320 win = CLSP(sp) ? CLSP(sp) : stdscr;
375 tsp->cl_private = subwin(stdscr, tsp->rows, tsp->cols,
449 win = CLSP(sp) ? CLSP(sp) : stdscr;
505 win = CLSP(sp) ? CLSP(sp) : stdscr;
532 win = CLSP(sp) ? CLSP(sp) : stdscr;
551 getyx(stdscr,
[all...]
H A Dcl_screen.c57 win = CLSP(sp) ? CLSP(sp) : stdscr;
281 idlok(stdscr, 1); /* Use hardware insert/delete line. */
284 (void)keypad(stdscr, TRUE);
391 (void)keypad(stdscr, FALSE);
/freebsd-11.0-release/contrib/ncurses/form/
H A Dfrm_win.c73 | Return Values : The pointer to the Window or stdscr if there is none.
87 result = (f->win ? f->win : stdscr);
/freebsd-11.0-release/usr.sbin/gstat/
H A Dgstat.c195 nodelay(stdscr, 1);
196 intrflush(stdscr, FALSE);
197 keypad(stdscr, TRUE);
216 getyx(stdscr, cury, curx);
217 getmaxyx(stdscr, maxy, maxx);
265 getyx(stdscr, cury, curx);
380 getyx(stdscr, cury, curx);
381 getmaxyx(stdscr, maxy, maxx);
/freebsd-11.0-release/lib/libdpv/
H A Dstatus.c91 attrs = getattrs(stdscr);
/freebsd-11.0-release/contrib/ncurses/ncurses/tinfo/
H A Dlib_data.c53 NCURSES_PUBLIC_VAR(stdscr) (void) function
68 NCURSES_EXPORT_VAR(WINDOW *) stdscr = 0;
/freebsd-11.0-release/tools/tools/ath/athratestats/
H A Dmain.c386 nodelay(stdscr, 1);
387 intrflush(stdscr, FALSE);
388 keypad(stdscr, TRUE);
/freebsd-11.0-release/contrib/netbsd-tests/lib/libcurses/slave/
H A Dslave.c129 stdscr);
132 "asprintf of stdscr failed");
/freebsd-11.0-release/usr.bin/systat/
H A Dswap.c69 return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0));
H A Dpigs.c71 return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0));
H A Dicmp.c91 return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0));
H A Dicmp6.c89 return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0));
H A Dip.c98 return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0));
/freebsd-11.0-release/contrib/dialog/
H A Dutil.c196 (void) wattrset(stdscr, screen_attr);
197 (void) wmove(stdscr, 0, 1);
198 dlg_print_text(stdscr, dialog_vars.backtitle, COLS - 2, &attr);
200 (void) waddch(stdscr, ' ');
201 (void) wmove(stdscr, 1, 1);
203 (void) waddch(stdscr, dlg_boxchar(ACS_HLINE));
206 (void) wnoutrefresh(stdscr);
230 dlg_attr_clear(stdscr, LINES, COLS, screen_attr);
424 (void) keypad(stdscr, TRUE);
1519 result = stdscr;
[all...]
H A Dtrace.c63 while (top != 0 && top != stdscr) {
H A Dmixedgauge.c299 nodelay(stdscr, TRUE);
364 nodelay(stdscr, FALSE);
H A Darrows.c111 bool is_toplevel = (wgetparent(win) == stdscr);
/freebsd-11.0-release/sys/teken/demo/
H A Dteken_demo.c122 getyx(stdscr, y, x);
239 keypad(stdscr, value ? TRUE : FALSE);
/freebsd-11.0-release/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 176 milliseconds

12