Home | History | Annotate | Download | only in lib

Lines Matching refs:FILE

160 /* Close STREAM and its underlying file descriptor.  */
165 _GL_FUNCDECL_RPL (fclose, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
166 _GL_CXXALIAS_RPL (fclose, int, (FILE *stream));
168 _GL_CXXALIAS_SYS (fclose, int, (FILE *stream));
184 _GL_FUNCDECL_RPL (fdopen, FILE *, (int fd, const char *mode)
186 _GL_CXXALIAS_RPL (fdopen, FILE *, (int fd, const char *mode));
188 _GL_CXXALIAS_SYS (fdopen, FILE *, (int fd, const char *mode));
209 _GL_FUNCDECL_RPL (fflush, int, (FILE *gl_stream));
210 _GL_CXXALIAS_RPL (fflush, int, (FILE *gl_stream));
212 _GL_CXXALIAS_SYS (fflush, int, (FILE *gl_stream));
228 _GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
229 _GL_CXXALIAS_RPL (fgetc, int, (FILE *stream));
231 _GL_CXXALIAS_SYS (fgetc, int, (FILE *stream));
242 _GL_FUNCDECL_RPL (fgets, char *, (char *s, int n, FILE *stream)
244 _GL_CXXALIAS_RPL (fgets, char *, (char *s, int n, FILE *stream));
246 _GL_CXXALIAS_SYS (fgets, char *, (char *s, int n, FILE *stream));
257 _GL_FUNCDECL_RPL (fopen, FILE *, (const char *filename, const char *mode)
259 _GL_CXXALIAS_RPL (fopen, FILE *, (const char *filename, const char *mode));
261 _GL_CXXALIAS_SYS (fopen, FILE *, (const char *filename, const char *mode));
279 _GL_FUNCDECL_RPL (fprintf, int, (FILE *fp, const char *format, ...)
283 _GL_FUNCDECL_RPL (fprintf, int, (FILE *fp, const char *format, ...)
287 _GL_CXXALIAS_RPL (fprintf, int, (FILE *fp, const char *format, ...));
289 _GL_CXXALIAS_SYS (fprintf, int, (FILE *fp, const char *format, ...));
306 When discarding pending output, the file position is set back to where it
307 was before the write calls. When discarding pending input, the file
314 _GL_FUNCDECL_RPL (fpurge, int, (FILE *gl_stream) _GL_ARG_NONNULL ((1)));
315 _GL_CXXALIAS_RPL (fpurge, int, (FILE *gl_stream));
318 _GL_FUNCDECL_SYS (fpurge, int, (FILE *gl_stream) _GL_ARG_NONNULL ((1)));
320 _GL_CXXALIAS_SYS (fpurge, int, (FILE *gl_stream));
337 _GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2)));
338 _GL_CXXALIAS_RPL (fputc, int, (int c, FILE *stream));
340 _GL_CXXALIAS_SYS (fputc, int, (int c, FILE *stream));
351 _GL_FUNCDECL_RPL (fputs, int, (const char *string, FILE *stream)
353 _GL_CXXALIAS_RPL (fputs, int, (const char *string, FILE *stream));
355 _GL_CXXALIAS_SYS (fputs, int, (const char *string, FILE *stream));
366 _GL_FUNCDECL_RPL (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream)
368 _GL_CXXALIAS_RPL (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream));
370 _GL_CXXALIAS_SYS (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream));
381 _GL_FUNCDECL_RPL (freopen, FILE *,
382 (const char *filename, const char *mode, FILE *stream)
384 _GL_CXXALIAS_RPL (freopen, FILE *,
385 (const char *filename, const char *mode, FILE *stream));
387 _GL_CXXALIAS_SYS (freopen, FILE *,
388 (const char *filename, const char *mode, FILE *stream));
405 _GL_FUNCDECL_RPL (fscanf, int, (FILE *stream, const char *format, ...)
408 _GL_CXXALIAS_RPL (fscanf, int, (FILE *stream, const char *format, ...));
410 _GL_CXXALIAS_SYS (fscanf, int, (FILE *stream, const char *format, ...));
457 _GL_FUNCDECL_RPL (fseek, int, (FILE *fp, long offset, int whence)
459 _GL_CXXALIAS_RPL (fseek, int, (FILE *fp, long offset, int whence));
461 _GL_CXXALIAS_SYS (fseek, int, (FILE *fp, long offset, int whence));
478 _GL_FUNCDECL_RPL (fseeko, int, (FILE *fp, off_t offset, int whence)
480 _GL_CXXALIAS_RPL (fseeko, int, (FILE *fp, off_t offset, int whence));
483 _GL_FUNCDECL_SYS (fseeko, int, (FILE *fp, off_t offset, int whence)
486 _GL_CXXALIAS_SYS (fseeko, int, (FILE *fp, off_t offset, int whence));
521 _GL_FUNCDECL_RPL (ftell, long, (FILE *fp) _GL_ARG_NONNULL ((1)));
522 _GL_CXXALIAS_RPL (ftell, long, (FILE *fp));
524 _GL_CXXALIAS_SYS (ftell, long, (FILE *fp));
539 _GL_FUNCDECL_RPL (ftello, off_t, (FILE *fp) _GL_ARG_NONNULL ((1)));
540 _GL_CXXALIAS_RPL (ftello, off_t, (FILE *fp));
543 _GL_FUNCDECL_SYS (ftello, off_t, (FILE *fp) _GL_ARG_NONNULL ((1)));
545 _GL_CXXALIAS_SYS (ftello, off_t, (FILE *fp));
575 (const void *ptr, size_t s, size_t n, FILE *stream)
578 (const void *ptr, size_t s, size_t n, FILE *stream));
581 (const void *ptr, size_t s, size_t n, FILE *stream));
590 rpl_fwrite (const void *ptr, size_t s, size_t n, FILE *stream)
609 _GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
610 _GL_CXXALIAS_RPL_1 (getc, rpl_fgetc, int, (FILE *stream));
612 _GL_CXXALIAS_SYS (getc, int, (FILE *stream));
645 FILE *stream)
649 FILE *stream));
654 FILE *stream)
659 FILE *stream));
683 (char **lineptr, size_t *linesize, FILE *stream)
686 (char **lineptr, size_t *linesize, FILE *stream));
690 (char **lineptr, size_t *linesize, FILE *stream)
694 (char **lineptr, size_t *linesize, FILE *stream));
769 _GL_FUNCDECL_SYS (pclose, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
771 _GL_CXXALIAS_SYS (pclose, int, (FILE *stream));
808 _GL_FUNCDECL_RPL (popen, FILE *, (const char *cmd, const char *mode)
810 _GL_CXXALIAS_RPL (popen, FILE *, (const char *cmd, const char *mode));
813 _GL_FUNCDECL_SYS (popen, FILE *, (const char *cmd, const char *mode)
816 _GL_CXXALIAS_SYS (popen, FILE *, (const char *cmd, const char *mode));
883 _GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2)));
884 _GL_CXXALIAS_RPL_1 (putc, rpl_fputc, int, (int c, FILE *stream));
886 _GL_CXXALIAS_SYS (putc, int, (int c, FILE *stream));
1086 _GL_FUNCDECL_RPL (tmpfile, FILE *, (void));
1087 _GL_CXXALIAS_RPL (tmpfile, FILE *, (void));
1089 _GL_CXXALIAS_SYS (tmpfile, FILE *, (void));
1186 _GL_FUNCDECL_RPL (vfprintf, int, (FILE *fp, const char *format, va_list args)
1190 _GL_FUNCDECL_RPL (vfprintf, int, (FILE *fp, const char *format, va_list args)
1194 _GL_CXXALIAS_RPL (vfprintf, int, (FILE *fp, const char *format, va_list args));
1200 (FILE *fp, const char *format, va_list args));
1221 (FILE *stream, const char *format, va_list args)
1225 (FILE *stream, const char *format, va_list args));
1228 (FILE *stream, const char *format, va_list args));