/osnet-11/usr/src/lib/libeti/menu/common/ |
H A D | menuformat.c | 39 set_menu_format(MENU *m, int rows, int cols) argument 41 if (rows < 0 || cols < 0) { 48 if (rows == 0) { 49 rows = FRows(m); 62 FRows(m) = rows; 66 Height(m) = min(rows, Rows(m)); 72 if (rows > 0) { 73 FRows(Dfl_Menu) = rows; 83 menu_format(MENU *m, int *rows, int *cols) argument 86 *rows [all...] |
/osnet-11/usr/src/lib/libast/common/port/ |
H A D | astwinsize.c | 26 * return terminal rows and cols 72 astwinsize(int fd, register int* rows, register int* cols) argument 80 if (rows) *rows = ws.ws_row; 91 if (rows) *rows = ts.ts_lines; 102 if (rows) *rows = ws.bytesy; 112 if (rows) *rows [all...] |
/osnet-11/usr/src/lib/libeti/form/common/ |
H A D | field.c | 46 0, /* rows */ 142 new_field(int rows, int cols, int frow, int fcol, int nrow, int nbuf) argument 144 /* int rows; number of visible rows */ 148 /* int nrow; number of off screen rows */ 154 if (rows > 0 && cols > 0 && frow >= 0 && fcol >= 0 && nrow >= 0 && 158 f->rows = rows; 162 f->drows = rows + nrow; 205 f->rows 310 field_info(FIELD *f, int *rows, int *cols, int *frow, int *fcol, int *nrow, int *nbuf) argument [all...] |
H A D | form.c | 46 0, /* rows */ 143 int ymax = f->frow + f->rows; 145 if (form->rows < ymax) 146 form->rows = ymax; 164 form->rows = 0; 302 scale_form(FORM *f, int *rows, int *cols) argument 310 *rows = f->rows; 367 start = T(f) + c->rows;
|
/osnet-11/usr/src/grub/grub2/grub-core/term/efi/ |
H A D | console.c | 190 grub_efi_uintn_t columns, rows; local 194 &columns, &rows) != GRUB_EFI_SUCCESS) 198 rows = 25; 201 return ((columns << 8) | rows);
|
/osnet-11/usr/src/cmd/parted/ |
H A D | table.c | 54 wchar_t*** rows; member in struct:__anon76 67 t->rows = (wchar_t***)NULL; 84 free (t->rows[r][c]); 85 free (t->rows[r]); 88 free (t->rows); 117 wcswidth(t->rows[r][c], 138 t->rows = xrealloc (t->rows, (t->nrows + 1) * sizeof(wchar_t***)); 140 t->rows[t->nrows] = row; 171 wchar_t** row = t->rows[rownu [all...] |
/osnet-11/usr/src/lib/libast/common/disc/ |
H A D | sfdcmore.c | 44 int rows; /* max rows */ member in struct:__anon1130 200 if (++more->row < more->rows) 298 * if rows==0 or cols==0 then they are deterimined from the tty 303 int sfdcmore(Sfio_t* f, const char* prompt, int rows, int cols) argument 305 int sfdcmore(f, prompt, rows, cols) 308 int rows; 332 if (!rows || !cols) 335 astwinsize(sffileno(sfstdin), &rows, &cols); local 337 if (!rows) [all...] |
/osnet-11/usr/src/lib/libshell/common/sh/ |
H A D | fault.c | 77 int rows=0, cols=0; local 79 astwinsize(2,&rows,&cols); 82 if(v = rows)
|
/osnet-11/usr/src/lib/libeti/menu/inc/ |
H A D | menu.h | 79 int rows; /* Number of items high */ member in struct:MENU
|
/osnet-11/usr/src/lib/libeti/form/inc/ |
H A D | form.h | 75 int rows; /* size in rows */ member in struct:fieldnode 79 int drows; /* dynamic rows */ 82 int nrow; /* offscreen rows */ 109 int rows; /* size in rows */ member in struct:formnode
|
/osnet-11/usr/src/grub/grub2/grub-core/loader/ia64/efi/ |
H A D | linux.c | 54 grub_uint16_t num_rows; /* number of rows on console output device */ 305 grub_efi_uintn_t cols, rows; local 308 if (conout->query_mode (conout, conout->mode->mode, &cols, &rows) 313 "Console info: cols=%lu rows=%lu x=%u y=%u\n", 314 cols, rows, 318 boot_param->console_info.num_rows = rows;
|
/osnet-11/usr/src/grub/grub2/grub-core/term/ |
H A D | gfxterm.c | 76 unsigned int rows; member in struct:grub_virtual_screen 97 /* Text buffer for virtual screen. Contains (columns * rows) number 233 virtual_screen.rows = virtual_screen.height / virtual_screen.normal_char_height; 238 * virtual_screen.rows 268 for (i = 0; i < virtual_screen.columns * virtual_screen.rows; i++) 404 for (i = 0; i < virtual_screen.columns * virtual_screen.rows; i++) 611 if (cy + virtual_screen.total_scroll >= virtual_screen.rows) 672 >= virtual_screen.rows) 777 if (was_scroll > virtual_screen.rows) 778 was_scroll = virtual_screen.rows; [all...] |
/osnet-11/usr/src/lib/libshell/common/edit/ |
H A D | edit.c | 515 int rows,cols; local 521 astwinsize(2,&rows,&cols); 831 int n, rows, newsize; local 835 astwinsize(2,&rows,&newsize); 855 astwinsize(2,&rows,&newsize);
|