Lines Matching refs:FILE
165 typedef struct __sFILE FILE; typedef
169 extern FILE *__stdinp;
170 extern FILE *__stdoutp;
171 extern FILE *__stderrp;
266 void clearerr(FILE *);
267 int fclose(FILE *);
268 int feof(FILE *);
269 int ferror(FILE *);
270 int fflush(FILE *);
271 int fgetc(FILE *);
272 int fgetpos(FILE * __restrict, fpos_t * __restrict);
273 char *(fgets)(char * __restrict, int, FILE * __restrict);
274 FILE *fopen(const char * __restrict, const char * __restrict);
275 int fprintf(FILE * __restrict, const char * __restrict, ...);
276 int fputc(int, FILE *);
277 int fputs(const char * __restrict, FILE * __restrict);
278 size_t fread(void * __restrict, size_t, size_t, FILE * __restrict);
279 FILE *freopen(const char * __restrict, const char * __restrict, FILE * __restrict);
280 int fscanf(FILE * __restrict, const char * __restrict, ...);
281 int fseek(FILE *, long, int);
282 int fsetpos(FILE *, const fpos_t *);
283 long ftell(FILE *);
284 size_t fwrite(const void * __restrict, size_t, size_t, FILE * __restrict);
285 int getc(FILE *);
292 int putc(int, FILE *);
297 void rewind(FILE *);
299 void setbuf(FILE * __restrict, char * __restrict);
300 int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
303 FILE *tmpfile(void);
305 int ungetc(int, FILE *);
306 int vfprintf(FILE * __restrict, const char * __restrict,
319 int vfscanf(FILE * __restrict, const char * __restrict, __va_list)
328 FILE *fdopen(int, const char *);
329 int fileno(FILE *);
333 int pclose(FILE *);
334 FILE *popen(const char *, const char *);
338 int ftrylockfile(FILE *);
339 void flockfile(FILE *);
340 void funlockfile(FILE *);
346 int getc_unlocked(FILE *);
348 int putc_unlocked(int, FILE *);
352 void clearerr_unlocked(FILE *);
353 int feof_unlocked(FILE *);
354 int ferror_unlocked(FILE *);
355 int fflush_unlocked(FILE *);
356 int fileno_unlocked(FILE *);
357 int fputc_unlocked(int, FILE *);
358 int fputs_unlocked(const char * __restrict, FILE * __restrict);
359 size_t fread_unlocked(void * __restrict, size_t, size_t, FILE * __restrict);
361 FILE * __restrict);
365 int fseeko(FILE *, __off_t, int);
366 __off_t ftello(FILE *);
370 int getw(FILE *);
371 int putw(int, FILE *);
379 FILE *fmemopen(void * __restrict, size_t, const char * __restrict);
381 FILE * __restrict);
382 FILE *open_memstream(char **, size_t *);
386 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
397 int fdclose(FILE *, int *);
398 char *fgetln(FILE *, size_t *);
400 int fpurge(FILE *);
401 void setbuffer(FILE *, char *, int);
402 int setlinebuf(FILE *);
417 FILE *funopen(const void *,
436 FILE *fopencookie(void *, const char *, cookie_io_functions_t);
463 int __srget(FILE *);
464 int __swbuf(int, FILE *);
472 static __inline int __sputc(int _c, FILE *_p) { in __sputc()