Searched refs:win (Results 176 - 200 of 268) sorted by relevance

1234567891011

/illumos-gate/usr/src/lib/libcurses/screen/
H A D_box.c49 box(WINDOW *win, chtype v, chtype h) argument
51 return (wborder(win, v, v, h, h,
H A Dkeypad.c50 keypad(WINDOW *win, bool bf) argument
57 win->_use_keypad = (bf) ? TRUE : FALSE;
H A Ddupwin.c58 dupwin(WINDOW *win) argument
61 int i, ncolumns = win->_maxx, nlines = win->_maxy;
72 (void) memcpy(new, win, sizeof (WINDOW));
79 win->_lastch = win->_firstch + nlines;
105 wincp = win->_y;
132 wc = win->_bkgd;
139 (void) memcpy((char *)new->_firstch, (char *)win->_firstch,
152 new->_index = win
[all...]
H A Dwinwstr.c39 winwstr(WINDOW *win, wchar_t *wstr) argument
42 int cy = win->_cury;
43 chtype *ptr = &(win->_y[cy][win->_curx]),
44 *pmax = &(win->_y[cy][win->_maxx]);
45 chtype *p1st = &(win->_y[cy][0]);
H A Dwgetwch.c43 wgetwch(WINDOW *win) argument
50 if ((c = wgetch(win)) == ERR)
61 if ((c = wgetch(win)) == ERR)
H A Dwborder.c78 wborder(WINDOW *win, chtype ls, chtype rs, chtype ts, argument
81 int i, endy = win->_maxy - 1, endx = win->_maxx - 2;
82 chtype **_y = win->_y; /* register version */
104 variables[i] = _WCHAR(win, variables[i]) | _ATTR(variables[i]);
108 xend = win->_maxx-1;
117 if ((m = xend + _curs_scrwidth[TYPE(wc)]) > win->_maxx)
128 if (endx == win->_maxx-2)
131 xend = win->_maxx-1;
140 if ((m = xend + _curs_scrwidth[TYPE(wc)]) > win
[all...]
H A Dvwscanw.c63 vwscanw(WINDOW *win, char *fmt, va_list ap) argument
69 if (wgetwstr(win, code) == ERR)
H A Dwaddwch.c40 * Add to 'win' a character at(curx, cury).
43 waddwch(WINDOW *win, chtype c) argument
61 if (waddch(win, a|(0xFF & *p++)) == ERR)
H A Dwinswch.c39 * Insert to 'win' a process code at(curx, cury).
42 winswch(WINDOW *win, chtype c) argument
57 if (winsch(win, a|(unsigned char)buf[i]) == ERR)
H A Dwinchnstr.c48 * Read in ncols worth of data from window win and assign the
54 winchnstr(WINDOW *win, chtype *string, int ncols) argument
56 chtype *ptr = &(win->_y[win->_cury][win->_curx]);
58 int maxcols = win->_maxx - win->_curx;
H A Dwinwchnstr.c39 * Read in ncols worth of data from window win and assign the
45 winwchnstr(WINDOW *win, chtype *string, int ncols) argument
47 chtype *ptr = &(win->_y[win->_cury][win->_curx]);
49 int maxcols = win->_maxx - win->_curx;
H A Dwnoutref.c51 wnoutrefresh(WINDOW *win) argument
60 if (win->_parent)
61 wsyncdown(win);
63 doall = win->_clear;
70 yorg = win->_begy + win->_yoffset;
71 xorg = win->_begx;
74 SP->virt_scr->_leave = win->_leave;
75 if ((!win->_leave && (win
[all...]
H A Dvwprintw.c64 vwprintw(WINDOW *win, char *fmt, va_list ap) argument
84 rv = waddstr(win, buffer);
H A Dscr_reset.c79 WINDOW *win = NULL, *win1 = NULL; local
127 if (((win = getwin(filep)) == NULL) ||
128 ((type == 2) && ((win1 = dupwin(win)) == NULL)) ||
129 (win->_maxy != curscr->_maxy) || (win->_maxx != curscr->_maxx) ||
255 if (win != NULL)
256 (void) delwin(win);
281 SP->virt_scr = _virtscr = win;
298 SP->cur_scr = curscr = win;
H A Dslk_start.c131 WINDOW *win; local
153 win = NULL;
156 if ((win = newwin(1, COLS, LINES - 1, 0)) == NULL)
158 win->_leave = TRUE;
159 (void) wattrset(win, A_REVERSE | A_DIM);
171 if (win != NULL)
172 (void) delwin(win);
192 slk->_win = win;
/illumos-gate/usr/src/lib/libeti/form/common/
H A Dform_win.c44 Form(f)->win = window;
51 return (Form(f)->win);
/illumos-gate/usr/src/ucbhead/
H A Dcurses.h129 #define mvwaddch(win, y, x, ch) VOID(wmove(win, y, x) == ERR ? \
130 ERR:waddch(win, ch))
131 #define mvwgetch(win, y, x) VOID(wmove(win, y, x) == ERR?ERR:wgetch(win))
132 #define mvwaddstr(win, y, x, str) VOID(wmove(win, y, x) == ERR? \
133 ERR:waddstr(win, str))
134 #define mvwgetstr(win,
[all...]
/illumos-gate/usr/src/ucblib/libcurses/
H A Dmvprintw.c42 mvwprintw(WINDOW *win, int y, int x, char *fmt, ...) argument
47 return (wmove(win, y, x) == OK ? _sprintw(win, fmt, ap) : ERR);
H A Dmvscanw.c42 mvwscanw(WINDOW *win, int y, int x, char *fmt, ...) argument
47 return (wmove(win, y, x) == OK ? _sscans(win, fmt, ap) : ERR);
H A Dscanw.c53 wscanw(WINDOW *win, char *fmt, ...) argument
59 j = _sscans(win, fmt, ap);
74 _sscans(WINDOW *win, char *fmt, va_list ap) argument
81 if (wgetstr(win, buf) == ERR)
/illumos-gate/usr/src/lib/libeti/panel/common/
H A Dmove.c51 if (mvwin(panel -> win, starty, startx) == ERR)
61 mvwin(panel -> win, starty, startx) == ERR)
69 getbegyx(panel -> win, panel -> wstarty, panel -> wstartx);
70 getmaxyx(panel -> win, panel -> wendy, panel -> wendx);
H A Dupdate.c59 (void) touchline(pnl->win, line - pnl->wstarty, 1);
94 (void) touchline(obs_pnl->win,
129 if (is_linetouched(panel -> win, i) == TRUE)
182 if (is_wintouched(panel -> win)) {
185 (void) wnoutrefresh(panel -> win);
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dfindstack_subr.c148 uintptr_t win, sp; local
247 for (win = ubase;
248 win + sizeof (struct rwindow) <= utop;
249 win += sizeof (struct rwindow *)) {
250 if (crawl(win, kbase, ktop, ubase, 1, fsip) == CRAWL_FOUNDALL) {
251 fsip->fsi_sp = UTOK(win) - STACK_BIAS;
264 for (win = ubase;
265 win + sizeof (struct rwindow) <= utop;
266 win += sizeof (struct rwindow *)) {
267 uintptr_t fp = ((struct rwindow *)win)
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/include/
H A Dcom_err.h23 #include <win-mac.h>
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/include/krb5/
H A Dk5-err.h40 #include <win-mac.h>

Completed in 99 milliseconds

1234567891011