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

123456789

/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dclrbot.c60 x = __m_cc_first(stdscr, stdscr->_cury, stdscr->_curx);
61 value = __m_cc_erase(stdscr,
62 stdscr->_cury, x, stdscr->_maxy - 1, stdscr->_maxx - 1);
H A Dclreol.c60 x = __m_cc_first(stdscr, stdscr->_cury, stdscr->_curx);
61 value = __m_cc_erase(stdscr,
62 stdscr->_cury, x, stdscr->_cury, stdscr->_maxx - 1);
H A Dmove.c54 if (y < 0 || stdscr->_maxy <= y || x < 0 || stdscr->_maxx <= x)
57 stdscr->_cury = (short) y;
58 stdscr->_curx = (short) x;
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dclrbot.c58 __m_trace("clrtobot(void) from (%d, %d)", stdscr->_cury, stdscr->_curx);
61 x = __m_cc_first(stdscr, stdscr->_cury, stdscr->_curx);
63 stdscr, stdscr->_cury, x, stdscr->_maxy-1, stdscr->_maxx-1
H A Dclreol.c58 __m_trace("clrtoeol(void) from (%d, %d)", stdscr->_cury, stdscr->_curx);
61 x = __m_cc_first(stdscr, stdscr->_cury, stdscr->_curx);
63 stdscr, stdscr->_cury, x, stdscr->_cury, stdscr->_maxx-1
/osnet-11/usr/src/lib/libcurses/screen/
H A DV3.m_clear.c51 return (wclear(stdscr));
H A DV3.m_erase.c51 return (werase(stdscr));
H A DV3.m_refresh.c51 return (wrefresh(stdscr));
H A D_clear.c51 return (wclear(stdscr));
H A D_clrtobot.c51 return (wclrtobot(stdscr));
H A D_clrtoeol.c51 return (wclrtoeol(stdscr));
H A D_delch.c51 return (wdelch(stdscr));
H A D_deleteln.c51 return (winsdelln(stdscr, -1));
H A D_erase.c51 return (werase(stdscr));
H A D_getch.c51 return (wgetch(stdscr));
H A D_getwch.c42 return (wgetwch(stdscr));
H A D_inch.c51 return (winch(stdscr));
H A D_insertln.c51 return (winsdelln(stdscr, 1));
H A D_inwch.c42 return (winwch(stdscr));
H A D_refresh.c51 return (wrefresh(stdscr));
H A D_standend.c51 return (wstandend(stdscr));
H A D_standout.c51 return (wstandout(stdscr));
H A D_mvaddch.c42 return (wmove(stdscr, y, x) == ERR ? ERR : waddch(stdscr, ch));
H A D_mvaddchnstr.c42 return (wmove(stdscr, y, x) == ERR ? ERR : waddchnstr(stdscr, s, n));
H A D_mvaddchstr.c51 return (wmove(stdscr, y, x) == ERR ? ERR : waddchstr(stdscr, s));

Completed in 59 milliseconds

123456789