Searched refs:fyle (Results 1 – 4 of 4) sorted by relevance
/titanic_50/usr/src/cmd/sgs/error/common/ |
H A D | errorfilter.c | 58 FILE *fyle; in getignored() local 85 if ((fyle = fopen(filename, "r")) == NULL) { in getignored() 95 for (nignored = 0; fgets(inbuffer, 255, fyle) != NULL; nignored++) in getignored() 98 (void) fclose(fyle); in getignored() 99 if (freopen(filename, "r", fyle) == NULL) { in getignored() 107 for (i = 0; i < nignored && (fgets(inbuffer, 255, fyle) != NULL); in getignored()
|
H A D | errorsubr.c | 267 wordvprint(FILE *fyle, int wordc, char *wordv[]) in wordvprint() argument 274 (void) fprintf(fyle, "%s%s", sep, wordv[i]); in wordvprint()
|
H A D | error.h | 237 void wordvprint(FILE *fyle, int wordc, char *wordv[]);
|
/titanic_50/usr/src/cmd/ypcmd/ |
H A D | getlist.c | 79 FILE *fyle; local 83 fyle = fopen(filename, "r"); 84 if (fyle == NULL) { 88 while (fgets(line, sizeof (line), fyle)) { 105 fclose(fyle);
|