Home | History | Annotate | Download | only in perf

Lines Matching defs:FILE

4820   my_strcat(inbuf, "to attach them to the start of each source file to most effectively\n");
4821 my_strcat(inbuf, "convey the exclusion of warranty; and each file should have at least\n");
4877 typedef struct _IO_FILE FILE;
5243 extern FILE *tmpfile (void);
5263 extern int fclose (FILE *__stream);
5268 extern int fflush (FILE *__stream);
5271 extern int fflush_unlocked (FILE *__stream);
5279 extern FILE *fopen (__const char *__restrict __filename,
5285 extern FILE *freopen (__const char *__restrict __filename,
5287 FILE *__restrict __stream);
5291 extern FILE *fdopen (int __fd, __const char *__modes) __attribute__ ((__nothrow__));
5296 extern void setbuf (FILE *__restrict __stream, char *__restrict __buf) __attribute__ ((__nothrow__));
5300 extern int setvbuf (FILE *__restrict __stream, char *__restrict __buf,
5307 extern void setbuffer (FILE *__restrict __stream, char *__restrict __buf,
5311 extern void setlinebuf (FILE *__stream) __attribute__ ((__nothrow__));
5320 extern int fprintf (FILE *__restrict __stream,
5357 extern int fscanf (FILE *__restrict __stream,
5374 extern int fgetc (FILE *__stream);
5375 extern int getc (FILE *__stream);
5384 extern int getc_unlocked (FILE *__stream);
5387 extern int fgetc_unlocked (FILE *__stream);
5399 extern int fputc (int __c, FILE *__stream);
5400 extern int putc (int __c, FILE *__stream);
5409 extern int fputc_unlocked (int __c, FILE *__stream);
5417 extern int putc_unlocked (int __c, FILE *__stream);
5425 extern int getw (FILE *__stream);
5428 extern int putw (int __w, FILE *__stream);
5437 extern char *fgets (char *__restrict __s, int __n, FILE *__restrict __stream);
5452 extern int fputs (__const char *__restrict __s, FILE *__restrict __stream);
5465 extern int ungetc (int __c, FILE *__stream);
5473 size_t __n, FILE *__restrict __stream);
5479 size_t __n, FILE *__restrict __s);
5483 size_t __n, FILE *__restrict __stream);
5485 size_t __n, FILE *__restrict __stream);
5494 extern int fseek (FILE *__stream, long int __off, int __whence);
5499 extern long int ftell (FILE *__stream);
5504 extern void rewind (FILE *__stream);
5513 extern int fgetpos (FILE *__restrict __stream, fpos_t *__restrict __pos);
5518 extern int fsetpos (FILE *__stream, __const fpos_t *__pos);
5522 extern void clearerr (FILE *__stream) __attribute__ ((__nothrow__));
5524 extern int feof (FILE *__stream) __attribute__ ((__nothrow__));
5526 extern int ferror (FILE *__stream) __attribute__ ((__nothrow__));
5531 extern void clearerr_unlocked (FILE *__stream) __attribute__ ((__nothrow__));
5532 extern int feof_unlocked (FILE *__stream) __attribute__ ((__nothrow__));
5533 extern int ferror_unlocked (FILE *__stream) __attribute__ ((__nothrow__));
5556 extern int fileno (FILE *__stream) __attribute__ ((__nothrow__));
5561 extern int fileno_unlocked (FILE *__stream) __attribute__ ((__nothrow__));
5563 extern FILE *popen (__const char *__command, __const char *__modes);
5569 extern int pclose (FILE *__stream);
5577 extern void flockfile (FILE *__stream) __attribute__ ((__nothrow__));
5581 extern int ftrylockfile (FILE *__stream) __attribute__ ((__nothrow__));
5584 extern void funlockfile (FILE *__stream) __attribute__ ((__nothrow__));