HomeSort by: relevance | last modified time | path
    Searched refs:__virtscr (Results 1 - 7 of 7) sorted by relevancy

  /src/lib/libcurses/
delwin.c 111 if (win == _cursesi_screen->__virtscr)
112 _cursesi_screen->__virtscr = NULL;
refresh.c 210 /* Check that cursor position on "win" is valid for "__virtscr" */
214 && 0 <= newy && newy < screen->__virtscr->maxy)
215 screen->__virtscr->cury = newy;
217 && 0 <= newx && newx < screen->__virtscr->maxx)
218 screen->__virtscr->curx = newx;
220 /* Copy the window flags from "win" to "__virtscr" */
223 screen->__virtscr->flags |= __CLEAROK;
226 screen->__virtscr->flags &= ~__LEAVEOK;
227 screen->__virtscr->flags |= dwin->flags;
235 y_off < screen->__virtscr->maxy; wy++, y_off++, dy_off++
    [all...]
screen.c 108 __virtscr = new->__virtscr;
164 new_screen->__virtscr = NULL;
194 if ((new_screen->__virtscr = __newwin(new_screen, 0,
resize.c 83 if (win == curscr || win == __virtscr || win == stdscr) {
118 /* If someone resizes curscr, we must also resize __virtscr */
120 if ((__resizewin(__virtscr, nlines, ncols)) == ERR)
122 __virtscr->reqy = req_nlines;
123 __virtscr->reqx = req_ncols;
194 if (__resizeterm(__virtscr, nlines, ncols) == ERR)
curses.c 65 WINDOW *__virtscr; /* Virtual screen (for doupdate()). */ variable in typeref:typename:WINDOW *
curses_private.h 216 WINDOW *__virtscr; /* Virtual screen (for doupdate()). */ member in struct:__screen
431 extern WINDOW *__virtscr;
color.c 249 if (wlp->winp != __virtscr && wlp->winp != curscr) {
667 if (win == __virtscr)

Completed in 13 milliseconds