Searched defs:filep (Results 1 - 8 of 8) sorted by relevance
/osnet-11/usr/src/lib/libcurses/screen/ |
H A D | scr_dump.c | 56 FILE *filep; local 58 if ((filep = fopen(file, "wF")) == NULL) { 66 rv = scr_ll_dump(filep); 67 (void) fclose(filep);
|
H A D | scr_all.c | 53 FILE *filep; local 55 if ((filep = fopen(file, "rF")) == NULL) 57 rv = scr_reset(filep, which); 58 (void) fclose(filep);
|
H A D | putwin.c | 51 * filep: the file to write to. 55 putwin(WINDOW *win, FILE *filep) argument 65 if (fwrite((char *) &(win->_cury), 1, nelt, filep) != nelt) 73 maxx, filep) != maxx)
|
H A D | scr_ll_dump.c | 50 scr_ll_dump(FILE *filep) argument 57 if (fwrite((char *) &magic, sizeof (short), 1, filep) != 1) 67 1, filep) != 1) 73 if (putwin(curscr, filep) == ERR) 79 if (fwrite((char *) &magic, sizeof (int), 1, filep) != 1) 86 sizeof (short), 1, filep) != 1) || 88 1, filep) != 1)) { 93 filep) != lablen) || (fwrite(slk->_lval[i], 94 sizeof (char), lablen, filep) != lablen)) { 108 if (fwrite((char *) &magic, sizeof (int), 1, filep) ! [all...] |
H A D | getwin.c | 52 getwin(FILE *filep) argument 65 if ((fread((char *) win_nums, sizeof (short), SEPARATE_READ, filep) != 77 if (fread(&(win->_flags), 1, nelt, filep) != nelt) 88 if (fread((char *) *wcp++, sizeof (chtype), maxx, filep) !=
|
H A D | scr_reset.c | 55 * filep: pointer to the output stream 77 scr_reset(FILE *filep, int type) argument 100 if (fread((char *) &magic, sizeof (short), 1, filep) != 1) 106 if (fread((char *) &ttytime, sizeof (time_t), 1, filep) != 1) 127 if (((win = getwin(filep)) == NULL) || 131 (fread((char *) &magic, sizeof (int), 1, filep) != 1)) 149 if ((fread((char *) &labmax, sizeof (short), 1, filep) != 1) || 150 (fread((char *) &lablen, sizeof (short), 1, filep) != 1)) { 162 * filep) != lablen) || 164 * filep ! [all...] |
/osnet-11/usr/src/grub/grub2/grub-core/fs/ |
H A D | fat.c | 689 char *filep = 0; local 784 filep = filename; 789 *filep++ = dir.name[i]; 794 *filep++ = grub_tolower (dir.name[i]); 796 *filep = '.'; 799 *++filep = grub_tolower (dir.name[i]); 801 if (*filep != '.') 802 filep++; 804 *filep = '\0';
|
/osnet-11/usr/src/lib/libdevinfo/ |
H A D | devfsmap.c | 175 file_err(struct conf_file *filep, char *fmt, ...) argument 182 filep->filename, filep->linenum); 190 lex(struct conf_file *filep, char *val, size_t size) argument 196 FILE *fp = filep->fp; 261 file_err(filep, "Missing \"\n"); 290 file_err(filep, 442 parse_conf_entry(struct conf_file *filep, char *tokbuf, size_t linesize) argument 472 file_err(filep, tok_err, tokbuf); 481 file_err(filep, tok_er [all...] |
Completed in 32 milliseconds