Lines Matching refs:FILE
164 typedef struct __sFILE FILE; typedef
168 extern FILE *__stdinp;
169 extern FILE *__stdoutp;
170 extern FILE *__stderrp;
250 void clearerr(FILE *);
251 int fclose(FILE *);
252 int feof(FILE *);
253 int ferror(FILE *);
254 int fflush(FILE *);
255 int fgetc(FILE *);
256 int fgetpos(FILE * __restrict, fpos_t * __restrict);
257 char *fgets(char * __restrict, int, FILE * __restrict);
258 FILE *fopen(const char * __restrict, const char * __restrict);
259 int fprintf(FILE * __restrict, const char * __restrict, ...);
260 int fputc(int, FILE *);
261 int fputs(const char * __restrict, FILE * __restrict);
262 size_t fread(void * __restrict, size_t, size_t, FILE * __restrict);
263 FILE *freopen(const char * __restrict, const char * __restrict, FILE * __restrict);
264 int fscanf(FILE * __restrict, const char * __restrict, ...);
265 int fseek(FILE *, long, int);
266 int fsetpos(FILE *, const fpos_t *);
267 long ftell(FILE *);
268 size_t fwrite(const void * __restrict, size_t, size_t, FILE * __restrict);
269 int getc(FILE *);
276 int putc(int, FILE *);
281 void rewind(FILE *);
283 void setbuf(FILE * __restrict, char * __restrict);
284 int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
287 FILE *tmpfile(void);
289 int ungetc(int, FILE *);
290 int vfprintf(FILE * __restrict, const char * __restrict,
303 int vfscanf(FILE * __restrict, const char * __restrict, __va_list)
321 FILE *fdopen(int, const char *);
322 int fileno(FILE *);
326 int pclose(FILE *);
327 FILE *popen(const char *, const char *);
331 int ftrylockfile(FILE *);
332 void flockfile(FILE *);
333 void funlockfile(FILE *);
339 int getc_unlocked(FILE *);
341 int putc_unlocked(int, FILE *);
345 void clearerr_unlocked(FILE *);
346 int feof_unlocked(FILE *);
347 int ferror_unlocked(FILE *);
348 int fflush_unlocked(FILE *);
349 int fileno_unlocked(FILE *);
350 int fputc_unlocked(int, FILE *);
351 int fputs_unlocked(const char * __restrict, FILE * __restrict);
352 size_t fread_unlocked(void * __restrict, size_t, size_t, FILE * __restrict);
354 FILE * __restrict);
358 int fseeko(FILE *, __off_t, int);
359 __off_t ftello(FILE *);
363 int getw(FILE *);
364 int putw(int, FILE *);
372 FILE *fmemopen(void * __restrict, size_t, const char * __restrict);
374 FILE * __restrict);
375 FILE *open_memstream(char **, size_t *);
379 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
390 int fdclose(FILE *, int *);
391 char *fgetln(FILE *, size_t *);
393 int fpurge(FILE *);
394 void setbuffer(FILE *, char *, int);
395 int setlinebuf(FILE *);
410 FILE *funopen(const void *,
428 FILE *fopencookie(void *, const char *, cookie_io_functions_t);
454 int __srget(FILE *);
455 int __swbuf(int, FILE *);
463 static __inline int __sputc(int _c, FILE *_p) { in __sputc()