Lines Matching refs:FILE
53 typedef __FILE FILE; typedef
335 FILE * tmpfile (void);
341 int fclose (FILE *);
342 int fflush (FILE *);
343 FILE * freopen (const char *__restrict, const char *__restrict, FILE *__restrict);
344 void setbuf (FILE *__restrict, char *__restrict);
345 int setvbuf (FILE *__restrict, char *__restrict, int, size_t);
346 int fprintf (FILE *__restrict, const char *__restrict, ...)
348 int fscanf (FILE *__restrict, const char *__restrict, ...)
356 int vfprintf (FILE *__restrict, const char *__restrict, va_list)
362 int fgetc (FILE *);
363 char * fgets (char *__restrict, int, FILE *__restrict);
364 int fputc (int, FILE *);
365 int fputs (const char *__restrict, FILE *__restrict);
366 int getc (FILE *);
369 int putc (int, FILE *);
372 int ungetc (int, FILE *);
373 size_t fread (void *__restrict, size_t _size, size_t _n, FILE *__restrict);
374 size_t fwrite (const void *__restrict , size_t _size, size_t _n, FILE *);
376 int fgetpos (FILE *, _fpos_t *);
378 int fgetpos (FILE *__restrict, fpos_t *__restrict);
380 int fseek (FILE *, long, int);
382 int fsetpos (FILE *, const _fpos_t *);
384 int fsetpos (FILE *, const fpos_t *);
386 long ftell ( FILE *);
387 void rewind (FILE *);
388 void clearerr (FILE *);
389 int feof (FILE *);
390 int ferror (FILE *);
393 FILE * fopen (const char *__restrict _name, const char *__restrict _type);
404 int fseeko (FILE *, _off_t, int);
405 _off_t ftello (FILE *);
407 int fseeko (FILE *, off_t, int);
408 off_t ftello (FILE *);
420 int vfscanf (FILE *__restrict, const char *__restrict, va_list)
444 int fiprintf (FILE *, const char *, ...)
447 int fiscanf (FILE *, const char *, ...)
469 int vfiprintf (FILE *, const char *, va_list)
471 int vfiscanf (FILE *, const char *, va_list)
492 FILE * fdopen (int, const char *);
494 int fileno (FILE *);
497 int pclose (FILE *);
498 FILE * popen (const char *, const char *);
502 void setbuffer (FILE *, char *, int);
503 int setlinebuf (FILE *);
507 int getw (FILE *);
508 int putw (int, FILE *);
511 int getc_unlocked (FILE *);
513 void flockfile (FILE *);
514 int ftrylockfile (FILE *);
515 void funlockfile (FILE *);
516 int putc_unlocked (int, FILE *);
530 FILE * fmemopen (void *__restrict, size_t, const char *__restrict);
533 FILE * open_memstream (char **, size_t *);
545 int fpurge (FILE *);
549 _ssize_t __getdelim (char **, size_t *, int, FILE *);
550 _ssize_t __getline (char **, size_t *, FILE *);
551 void clearerr_unlocked (FILE *);
552 int feof_unlocked (FILE *);
553 int ferror_unlocked (FILE *);
554 int fileno_unlocked (FILE *);
555 int fflush_unlocked (FILE *);
556 int fgetc_unlocked (FILE *);
557 int fputc_unlocked (int, FILE *);
558 size_t fread_unlocked (void *__restrict, size_t _size, size_t _n, FILE *__restrict);
559 size_t fwrite_unlocked (const void *__restrict , size_t _size, size_t _n, FILE *);
563 char * fgets_unlocked (char *__restrict, int, FILE *__restrict);
564 int fputs_unlocked (const char *__restrict, FILE *__restrict);
569 FILE * fdopen64 (int, const char *);
570 FILE * fopen64 (const char *, const char *);
571 FILE * freopen64 (const char *, const char *, FILE *);
572 _off64_t ftello64 (FILE *);
573 _off64_t fseeko64 (FILE *, _off64_t, int);
574 int fgetpos64 (FILE *, _fpos64_t *);
575 int fsetpos64 (FILE *, const _fpos64_t *);
576 FILE * tmpfile64 (void);
585 int _srget ( FILE *);
586 int _swbuf ( int, FILE *);
594 FILE *funopen (const void *__cookie,
601 FILE *funopen ( const void *__cookie,
609 FILE *funopen (const void *__cookie,
616 FILE *funopen ( const void *__cookie,
649 FILE *fopencookie (void *__cookie,
651 FILE *fopencookie ( void *__cookie,
673 _ELIDABLE_INLINE int _sgetc( FILE *__p);
675 _ELIDABLE_INLINE int _sgetc( FILE *__p) in _sgetc()
693 _ELIDABLE_INLINE int _sputc( int _c, FILE *_p) { in _sputc()