HomeSort by relevance Sort by last modified time
    Searched defs:win (Results 1 - 25 of 57) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/cmd/fmli/vt/
indicator.c 42 WINDOW *win; local
44 win = VT_array[ STATUS_WIN ].win;
47 mvwaddstr(win, 0, col, message);
49 wmove(win, 0, col);
50 winputs(message, win);
52 wnoutrefresh( win );
working.c 50 WINDOW *win; local
52 win = VT_array[ STATUS_WIN ].win;
54 mvwaddstr(win, 0, Work_col, Work_msg);
56 wmove(win, 0, Work_col);
57 wclrtoeol(win); /* assumes right-most! */
59 wnoutrefresh( win );
wputchar.c 51 register WINDOW *win; local
57 if ((win=w) == NULL)
61 win = v->win;
154 waddch(win, c | attr);
158 getyx(win, row, col);
164 waddch(win, c | attr);
168 wmove(win, row + 1, 1);
171 wmove(win, row, col - 1);
174 wmove(win, row, (col + 8) & ~7)
    [all...]
showmail.c 66 WINDOW *win; local
68 win = VT_array[ STATUS_WIN ].win;
69 mvwaddstr( win, 0, Mail_col, status ? mail : blanks );
message.c 61 WINDOW *win; local
66 win = VT_array[ MESS_WIN ].win;
68 mvwaddstr( win, 0, 0, s );
70 wmove(win, 0, 0);
71 winputs(s, win);
73 wclrtobot( win );
74 wnoutrefresh( win );
  /onnv/onnv-gate/usr/src/lib/libcurses/screen/
slk_atroff.c 50 WINDOW *win; local
56 if ((SP->slk == NULL) || ((win = SP->slk->_win) == NULL))
59 return (wattroff(win, a));
slk_atron.c 50 WINDOW *win; local
56 if ((SP->slk == NULL) || ((win = SP->slk->_win) == NULL))
59 return (wattron(win, a));
slk_atrset.c 50 WINDOW *win; local
56 if ((SP->slk == NULL) || ((win = SP->slk->_win) == NULL))
59 return (wattrset(win, a));
makenew.c 55 WINDOW *win; local
63 if ((win = (WINDOW *) malloc(sizeof (WINDOW))) == NULL)
65 if ((win->_y = (chtype **) malloc(nlines * sizeof (chtype *))) == NULL)
68 if ((_y16update) && ((win->_y16 = (_ochtype **)
73 if ((win->_firstch = (short *) malloc(2 * nlines * sizeof (short)))
76 if ((_y16update) && (win->_y16 != NULL))
77 free((char *) win->_y16);
80 free((char *) win->_y);
82 free((char *) win);
90 win->_lastch = win->_firstch + nlines
    [all...]
slk_refresh.c 63 WINDOW *win; local
70 win = slk->_win;
73 if (win)
74 (void) mvwaddstr(win, 0, slk->_labx[i],
82 if (!win) {
95 return (win ? TRUE : FALSE);
derwin.c 60 WINDOW *win = (WINDOW *) NULL, *par; local
76 if ((win = _makenew(num_lines, nc, by + orig->_begy,
82 win->_parx = (short) bx;
84 win->_pary = (short) by;
85 win->_bkgd = orig->_bkgd;
86 win->_attrs = orig->_attrs;
87 w_y = win->_y;
94 w_y16 = win ->_y16;
105 win->_yoffset = orig->_yoffset;
108 win->_parent = orig
    [all...]
getwin.c 55 WINDOW *win = NULL; local
60 nelt = sizeof (WINDOW) - sizeof (win->_y) - sizeof (win->_parent) -
61 sizeof (win->_parx) - sizeof (win->_pary) -
62 sizeof (win->_ndescs) - sizeof (win->_delay) -
66 SEPARATE_READ) || ((win = _makenew(maxy = win_nums[2], maxx =
71 if (_image(win) == ERR) {
72 win = (WINDOW *) NULL
    [all...]
newwin.c 53 WINDOW *win; local
61 if ((by < 0) || (bx < 0) || ((win = _makenew(nlines, ncols, by,
62 bx)) == (WINDOW *) NULL) || (_image(win) == ERR)) {
67 memSset(&win->_y[counter][0], (chtype) ' ', ncols);
73 win->_y16[counter][i] = (_ochtype) ' ';
79 win->_yoffset = SP->Yabove;
80 return (win);
84 _image(WINDOW *win)
86 int i, nlines = win->_maxy;
88 size_t oscols = win->_maxx * sizeof (_ochtype)
    [all...]
scr_reset.c 79 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;
slk_start.c 131 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;
  /onnv/onnv-gate/usr/src/ucblib/libcurses/
id_subwins.c 34 WINDOW *win; local
39 for (win = orig->_nextp; win != orig; win = win->_nextp) {
44 if (win->_begy + win->_maxy <= realy)
48 for (y = realy - win->_begy; y < win->_maxy; y++, oy++)
49 win->_y[y] = &orig->_y[oy][win->_ch_off]
    [all...]
newwin.c 42 WINDOW *win; local
56 if ((win = makenew(nl, nc, by, bx)) == NULL)
58 if ((win->_firstch = SMALLOC(nl * sizeof (win->_firstch[0]))) == NULL) {
59 free(win->_y);
60 free(win);
63 if ((win->_lastch = SMALLOC(nl * sizeof (win->_lastch[0]))) == NULL) {
64 free(win->_y);
65 free(win->_firstch)
97 WINDOW *win; local
157 WINDOW *win; local
    [all...]
cr_tty.c 98 struct winsize win; local
116 if (ioctl(_tty_ch, TIOCGWINSZ, &win) >= 0) {
118 LINES = win.ws_row;
120 COLS = win.ws_col;
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/shadow/
GenericWindowShadow.java 149 Window win = (Window)body; local
150 if (win.countComponents() == 0)
151 win.add(new Label(/* NOI18N */"Generic Window"));
209 Window win = (Window)body; local
210 win.hide();
  /onnv/onnv-gate/usr/src/lib/libeti/panel/inc/
panel.h 46 WINDOW *win; member in struct:PANEL
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/shadow/java/awt/
WindowShadow.java 157 Window win = (Window)body; local
165 // win.location() returns the location that the window
174 loc = win.getLocationOnScreen();
176 loc = win.getLocation();
183 return win.location();
188 return win.size();
192 return win.size();
199 Window win = (Window)body; local
205 win.move(p.x, p.y);
211 win.move(p.x, p.y)
232 Window win = (Window)body; local
330 Window win = (Window)body; local
376 Window win = (Window)body; local
817 Window win = (Window)body; local
841 Window win = (Window)body; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fmli/inc/
vt.h 36 WINDOW *win; member in struct:vt
  /onnv/onnv-gate/usr/src/cmd/fmli/qued/
acs_io.c 59 len = winchnstr((&VT_array[VT_curid])->win, ch_string, LASTCOL + 1) - 1;
86 winsch(v->win, ch);
143 getyx(v->win, savey, savex);
148 ch = mvwinch(v->win, row, col);
149 wmove(v->win, savey, savex); /* return cursor */
166 register WINDOW *win; local
171 win = v->win;
173 waddch(win, ch);
190 register WINDOW *win; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/awt/
VJScrollbar.java 57 private boolean win; field in class:VJScrollbar
80 win = Global.isWindows();
92 if (win) {
149 if (win)
159 if (win)
169 if (win)
179 if (win)
189 if (win)
199 if (win)
215 if (win)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/base/
MainHelper.java 137 WindowShadow win = baseGroup.getWindow(); local
141 if (win instanceof FrameShadow) {
142 win.createBody();
143 baseGroup.setTopLevel((Frame)win.getBody());
144 } else if (win instanceof DialogShadow) {
147 String title = win.getName();
241 WindowShadow win = baseGroup.getWindow(); local
245 if (win instanceof FrameShadow) {
246 win.createBody();
247 baseGroup.setTopLevel((Frame)win.getBody())
    [all...]

Completed in 180 milliseconds

1 2 3