Searched defs:by (Results 1 - 9 of 9) sorted by relevance

/osnet-11/usr/src/lib/libcurses/screen/
H A Dmvwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
36 * software developed by the University of California, Berkeley, and its
50 mvwin(WINDOW *win, int by, int bx) argument
52 if ((by + win->_maxy) > LINES || (bx + win->_maxx) > COLS ||
53 by < 0 || bx < 0)
56 win->_begy = (short) by;
H A D_subpad.c17 * fields enclosed by brackets "[]" replaced with your own identifying
36 * software developed by the University of California, Berkeley, and its
49 subpad(WINDOW *win, int l, int nc, int by, int bx) argument
51 return (derwin(win, l, nc, by, bx));
H A Dsubwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
36 * software developed by the University of California, Berkeley, and its
48 subwin(WINDOW *win, int l, int nc, int by, int bx) argument
50 return (derwin(win, l, nc, by - win->_begy, bx - win->_begx));
H A Dderwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
36 * software developed by the University of California, Berkeley, and its
52 * by, bx: coordinates for upper-left corner of the derived
57 derwin(WINDOW *orig, int num_lines, int nc, int by, int bx) argument
67 if (by < 0 || (by + num_lines) > orig->_maxy || bx < 0 ||
73 num_lines = orig->_maxy - by;
76 if ((win = _makenew(num_lines, nc, by + orig->_begy,
84 win->_pary = (short) by;
92 int hby = by;
[all...]
H A Dnewwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
36 * software developed by the University of California, Berkeley, and its
51 newwin(int nlines, int ncols, int by, int bx) argument
57 nlines = LINES - by;
61 if ((by < 0) || (bx < 0) || ((win = _makenew(nlines, ncols, by,
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dmvwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
23 * Copyright (c) 1995-1998 by Sun Microsystems, Inc.
36 * Copyright 1990, 1995 by Mortice Kern Systems Inc. All rights reserved.
56 mvwin(WINDOW *w, int by, int bx) argument
62 if (by < 0 || bx < 0)
67 if (lines < by + w->_maxy || columns < bx + w->_maxx)
71 if (parent->_begy + parent->_maxy < by + w->_maxy ||
79 dy = by - parent->_begy;
86 w->_begy = (short) by;
H A Dgetwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
23 * Copyright (c) 1995-1998 by Sun Microsystems, Inc.
36 * Copyright 1990, 1995 by Mortice Kern Systems Inc. All rights reserved.
83 int by, bx, my, mx; local
86 if (fscanf(fp, "MAX=%d,%d BEG=%d,%d ", &my, &mx, &by, &bx) < 4)
92 if ((w = newwin(my, mx, by, bx)) == NULL)
96 by = fscanf(fp,
100 if (by < 7)
106 by = fscanf(fp, "BG=%hx,%hd,%[^\n] ", &w->_bg._at, &w->_bg._co, mbs);
107 if (by <
[all...]
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dgetwin.c17 * fields enclosed by brackets "[]" replaced with your own identifying
23 * Copyright (c) 1995, by Sun Microsystems, Inc.
34 * Copyright 1990, 1995 by Mortice Kern Systems Inc. All rights reserved.
81 int by, bx, my, mx; local
88 if (fscanf(fp, "MAX=%d,%d BEG=%d,%d ", &my, &mx, &by, &bx) < 4)
94 if ((w = newwin(my, mx, by, bx)) == (WINDOW *) 0)
98 by = fscanf(
103 if (by < 7)
109 by = fscanf( fp, "BG=%hx,%hd,%[^\n] ", &w->_bg._at, &w->_bg._co, mbs);
110 if (by <
[all...]
/osnet-11/usr/src/lib/libdiskmgt/common/
H A Dentry.c16 * fields enclosed by brackets "[]" replaced with your own identifying
85 static int build_usage_string(char *dname, char *by, char *data, char **use,
632 * Errors must be handled by the caller. The dm_descriptor_t *
667 * Errors must be handled by the caller. The dm_descriptor_t *
785 * This is done by assuming the following:
921 * Check a slice to see if it's being used by swap.
1012 char *by, *data; local
1087 if (nvpair_value_string(nvwhat, &by)) {
1100 if (strcmp(by, DM_USE_LU) == 0 ||
1101 strcmp(by, DM_USE_F
1613 build_usage_string(char *dname, char *by, char *data, char **msg, int *found, int *errp) argument
[all...]

Completed in 20 milliseconds