Lines Matching refs:FILE

34   TYPE(FILE*);  in stdio_h()
73 FILE* fp; in stdio_h()
78 FUNCTION(clearerr, void (*f)(FILE*)); in stdio_h()
81 FUNCTION(fclose, int (*f)(FILE*)); in stdio_h()
82 FUNCTION(fdopen, FILE* (*f)(int, const char*)); in stdio_h()
83 FUNCTION(feof, int (*f)(FILE*)); in stdio_h()
84 FUNCTION(ferror, int (*f)(FILE*)); in stdio_h()
85 FUNCTION(fflush, int (*f)(FILE*)); in stdio_h()
86 FUNCTION(fgetc, int (*f)(FILE*)); in stdio_h()
87 FUNCTION(fgetpos, int (*f)(FILE*, fpos_t*)); in stdio_h()
88 FUNCTION(fgets, char* (*f)(char*, int, FILE*)); in stdio_h()
89 FUNCTION(fileno, int (*f)(FILE*)); in stdio_h()
90 FUNCTION(flockfile, void (*f)(FILE*)); in stdio_h()
91 FUNCTION(fmemopen, FILE* (*f)(void*, size_t, const char*)); in stdio_h()
92 FUNCTION(fopen, FILE* (*f)(const char*, const char*)); in stdio_h()
93 FUNCTION(fprintf, int (*f)(FILE*, const char*, ...)); in stdio_h()
94 FUNCTION(fputc, int (*f)(int, FILE*)); in stdio_h()
95 FUNCTION(fputs, int (*f)(const char*, FILE*)); in stdio_h()
96 FUNCTION(fread, size_t (*f)(void*, size_t, size_t, FILE*)); in stdio_h()
97 FUNCTION(freopen, FILE* (*f)(const char*, const char*, FILE*)); in stdio_h()
98 FUNCTION(fscanf, int (*f)(FILE*, const char*, ...)); in stdio_h()
99 FUNCTION(fseek, int (*f)(FILE*, long, int)); in stdio_h()
100 FUNCTION(fseeko, int (*f)(FILE*, off_t, int)); in stdio_h()
101 FUNCTION(fsetpos, int (*f)(FILE*, const fpos_t*)); in stdio_h()
102 FUNCTION(ftell, long (*f)(FILE*)); in stdio_h()
103 FUNCTION(ftello, off_t (*f)(FILE*)); in stdio_h()
104 FUNCTION(ftrylockfile, int (*f)(FILE*)); in stdio_h()
105 FUNCTION(funlockfile, void (*f)(FILE*)); in stdio_h()
106 FUNCTION(fwrite, size_t (*f)(const void*, size_t, size_t, FILE*)); in stdio_h()
107 FUNCTION(getc, int (*f)(FILE*)); in stdio_h()
109 FUNCTION(getc_unlocked, int (*f)(FILE*)); in stdio_h()
111 FUNCTION(getdelim, ssize_t (*f)(char**, size_t*, int, FILE*)); in stdio_h()
112 FUNCTION(getline, ssize_t (*f)(char**, size_t*, FILE*)); in stdio_h()
114 FUNCTION(open_memstream, FILE* (*f)(char**, size_t*)); in stdio_h()
115 FUNCTION(pclose, int (*f)(FILE*)); in stdio_h()
117 FUNCTION(popen, FILE* (*f)(const char*, const char*)); in stdio_h()
119 FUNCTION(putc, int (*f)(int, FILE*)); in stdio_h()
121 FUNCTION(putc_unlocked, int (*f)(int, FILE*)); in stdio_h()
127 FUNCTION(rewind, void (*f)(FILE*)); in stdio_h()
129 FUNCTION(setbuf, void (*f)(FILE*, char*)); in stdio_h()
130 FUNCTION(setvbuf, int (*f)(FILE*, char*, int, size_t)); in stdio_h()
135 FUNCTION(tmpfile, FILE* (*f)(void)); in stdio_h()
137 FUNCTION(ungetc, int (*f)(int, FILE*)); in stdio_h()
139 FUNCTION(vfprintf, int (*f)(FILE*, const char*, va_list)); in stdio_h()
140 FUNCTION(vfscanf, int (*f)(FILE*, const char*, va_list)); in stdio_h()