Searched refs:stdscr (Results 1 - 25 of 222) sorted by relevance
123456789
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | clrbot.c | 60 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 D | clreol.c | 60 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 D | move.c | 54 if (y < 0 || stdscr->_maxy <= y || x < 0 || stdscr->_maxx <= x) 57 stdscr->_cury = (short) y; 58 stdscr->_curx = (short) x;
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | clrbot.c | 58 __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 D | clreol.c | 58 __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
|
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | V3.m_clear.c | 51 return (wclear(stdscr));
|
H A D | V3.m_erase.c | 51 return (werase(stdscr));
|
H A D | V3.m_refresh.c | 51 return (wrefresh(stdscr));
|
H A D | _clear.c | 51 return (wclear(stdscr));
|
H A D | _clrtobot.c | 51 return (wclrtobot(stdscr));
|
H A D | _clrtoeol.c | 51 return (wclrtoeol(stdscr));
|
H A D | _delch.c | 51 return (wdelch(stdscr));
|
H A D | _deleteln.c | 51 return (winsdelln(stdscr, -1));
|
H A D | _erase.c | 51 return (werase(stdscr));
|
H A D | _getch.c | 51 return (wgetch(stdscr));
|
H A D | _getwch.c | 42 return (wgetwch(stdscr));
|
H A D | _inch.c | 51 return (winch(stdscr));
|
H A D | _insertln.c | 51 return (winsdelln(stdscr, 1));
|
H A D | _inwch.c | 42 return (winwch(stdscr));
|
H A D | _refresh.c | 51 return (wrefresh(stdscr));
|
H A D | _standend.c | 51 return (wstandend(stdscr));
|
H A D | _standout.c | 51 return (wstandout(stdscr));
|
H A D | _mvaddch.c | 42 return (wmove(stdscr, y, x) == ERR ? ERR : waddch(stdscr, ch));
|
H A D | _mvaddchnstr.c | 42 return (wmove(stdscr, y, x) == ERR ? ERR : waddchnstr(stdscr, s, n));
|
H A D | _mvaddchstr.c | 51 return (wmove(stdscr, y, x) == ERR ? ERR : waddchstr(stdscr, s));
|
Completed in 104 milliseconds
123456789