Home
last modified time | relevance | path

Searched refs:stdscr (Results 76 – 100 of 228) sorted by relevance

12345678910

/illumos-gate/usr/src/lib/libcurses/screen/
H A D_mvaddstr.c47 return (wmove(stdscr, y, x) == ERR ? ERR : waddstr(stdscr, str)); in mvaddstr()
H A D_mvgetstr.c49 return (wmove(stdscr, y, x) == ERR ? ERR : wgetstr(stdscr, str)); in mvgetstr()
H A D_mvinch.c49 return (wmove(stdscr, y, x) == ERR ? (chtype) ERR : winch(stdscr)); in mvinch()
H A D_mvinsstr.c49 return (wmove(stdscr, y, x) == ERR ? ERR : winsstr(stdscr, s)); in mvinsstr()
H A D_mvinstr.c49 return (wmove(stdscr, y, x) == ERR ? ERR : winstr(stdscr, s)); in mvinstr()
H A D_mvaddch.c40 return (wmove(stdscr, y, x) == ERR ? ERR : waddch(stdscr, ch)); in mvaddch()
H A D_mvaddchstr.c49 return (wmove(stdscr, y, x) == ERR ? ERR : waddchstr(stdscr, s)); in mvaddchstr()
H A D_mvinchstr.c49 return (wmove(stdscr, y, x) == ERR ? ERR : winchstr(stdscr, s)); in mvinchstr()
H A D_mvinsch.c49 return (wmove(stdscr, y, x) == ERR ? ERR : winsch(stdscr, c)); in mvinsch()
H A D_mvaddnstr.c49 return (wmove(stdscr, y, x) == ERR ? ERR : waddnstr(stdscr, s, n)); in mvaddnstr()
H A D_mvinnstr.c49 return (wmove(stdscr, y, x) == ERR ? ERR : winnstr(stdscr, s, n)); in mvinnstr()
H A D_mvinsnstr.c49 return (wmove(stdscr, y, x) == ERR ? ERR : winsnstr(stdscr, s, n)); in mvinsnstr()
H A D_mvaddchnstr.c40 return (wmove(stdscr, y, x) == ERR ? ERR : waddchnstr(stdscr, s, n)); in mvaddchnstr()
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dclear.c57 code = wclear(stdscr); in clear()
71 code = werase(stdscr); in erase()
H A Decho_wch.c57 code1 = wadd_wch(stdscr, ch); in echo_wchar()
58 code = wrefresh(stdscr); in echo_wchar()
H A Dechochar.c57 code1 = waddch(stdscr, ch); in echochar()
58 code = wrefresh(stdscr); in echochar()
H A Dnewterm.c59 WINDOW *stdscr; variable
368 if (stdscr == NULL) { in newterm()
369 stdscr = newwin(lines - n, 0, rip.top, 0); in newterm()
370 if (stdscr == NULL) in newterm()
390 LINES = stdscr->_maxy = sp->_curscr->_maxy - n; in newterm()
H A Dbkgrndst.c54 wbkgrndset(stdscr, bg); in bkgrndset()
77 *bg = stdscr->_bg; in getbkgrnd()
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dclear.c56 code = wclear(stdscr);
73 code = werase(stdscr);
H A Decho_wch.c53 if ((code = wadd_wch(stdscr, ch)) == OK)
54 code = wrefresh(stdscr);
H A Dechochar.c53 if ((code = waddch(stdscr, ch)) == OK)
54 code = wrefresh(stdscr);
H A Dbkgrndst.c52 stdscr->_bg = *bg;
79 *bg = stdscr->_bg;
H A Dinitscr.c111 return __m_return_pointer("initscr", stdscr); in initscr()
113 (void) delwin(stdscr); in initscr()
/illumos-gate/usr/src/grub/grub-0.97/grub/
H A Dasmstub.c179 scrollok (stdscr, TRUE); in grub_stage2()
180 keypad (stdscr, TRUE); in grub_stage2()
181 wtimeout (stdscr, 100); in grub_stage2()
573 getyx (stdscr, y, x); in console_putchar()
575 scroll (stdscr); in console_putchar()
583 getyx (stdscr, y, x); in console_putchar()
692 wtimeout (stdscr, -1); in console_getkey()
694 wtimeout (stdscr, 100); in console_getkey()
714 getyx (stdscr, y, x); in console_getxy()
/illumos-gate/usr/src/lib/libeti/panel/common/
H A Dupdate.c150 if (is_linetouched(stdscr, screen_y) == TRUE) in std_touchup()
166 if (is_wintouched(stdscr)) { in update_panels()
170 (void) wnoutrefresh(stdscr); in update_panels()

12345678910