Home | History | Annotate | Download | only in darwin-lib

Lines Matching full:stream

472 /* Close STREAM and its underlying file descriptor.  */
477 _GL_FUNCDECL_RPL (fclose, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
478 _GL_CXXALIAS_RPL (fclose, int, (FILE *stream));
480 _GL_CXXALIAS_SYS (fclose, int, (FILE *stream));
511 /* Flush all pending data on STREAM according to POSIX rules. Both
513 Note! LOSS OF DATA can occur if fflush is applied on an input stream
514 that is _not_seekable_ or on an update stream that is _not_seekable_
540 _GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
541 _GL_CXXALIAS_RPL (fgetc, int, (FILE *stream));
543 _GL_CXXALIAS_SYS (fgetc, int, (FILE *stream));
554 _GL_FUNCDECL_RPL (fgets, char *, (char *s, int n, FILE *stream)
556 _GL_CXXALIAS_RPL (fgets, char *, (char *s, int n, FILE *stream));
558 _GL_CXXALIAS_SYS (fgets, char *, (char *s, int n, FILE *stream));
616 /* Discard all pending buffered I/O data on STREAM.
617 STREAM must not be wide-character oriented.
649 _GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2)));
650 _GL_CXXALIAS_RPL (fputc, int, (int c, FILE *stream));
652 _GL_CXXALIAS_SYS (fputc, int, (int c, FILE *stream));
663 _GL_FUNCDECL_RPL (fputs, int, (const char *string, FILE *stream)
665 _GL_CXXALIAS_RPL (fputs, int, (const char *string, FILE *stream));
667 _GL_CXXALIAS_SYS (fputs, int, (const char *string, FILE *stream));
678 _GL_FUNCDECL_RPL (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream)
680 _GL_CXXALIAS_RPL (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream));
682 _GL_CXXALIAS_SYS (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream));
694 (const char *filename, const char *mode, FILE *stream)
697 (const char *filename, const char *mode, FILE *stream));
700 (const char *filename, const char *mode, FILE *stream));
717 _GL_FUNCDECL_RPL (fscanf, int, (FILE *stream, const char *format, ...)
720 _GL_CXXALIAS_RPL (fscanf, int, (FILE *stream, const char *format, ...));
722 _GL_CXXALIAS_SYS (fscanf, int, (FILE *stream, const char *format, ...));
756 Most gnulib clients that perform stream operations should fall into
887 (const void *ptr, size_t s, size_t n, FILE *stream)
890 (const void *ptr, size_t s, size_t n, FILE *stream));
893 (const void *ptr, size_t s, size_t n, FILE *stream));
902 rpl_fwrite (const void *ptr, size_t s, size_t n, FILE *stream)
904 size_t r = fwrite (ptr, s, n, stream);
921 _GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
922 _GL_CXXALIAS_RPL_1 (getc, rpl_fgetc, int, (FILE *stream));
924 _GL_CXXALIAS_SYS (getc, int, (FILE *stream));
945 STREAM, store it in *LINEPTR (and NUL-terminate it).
957 FILE *stream)
961 FILE *stream));
966 FILE *stream)
971 FILE *stream));
983 /* Read a line, up to (and including) the next newline, from STREAM, store it
995 (char **lineptr, size_t *linesize, FILE *stream)
998 (char **lineptr, size_t *linesize, FILE *stream));
1002 (char **lineptr, size_t *linesize, FILE *stream)
1006 (char **lineptr, size_t *linesize, FILE *stream));
1081 _GL_FUNCDECL_SYS (pclose, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
1083 _GL_CXXALIAS_SYS (pclose, int, (FILE *stream));
1195 _GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2)));
1196 _GL_CXXALIAS_RPL_1 (putc, rpl_fputc, int, (int c, FILE *stream));
1198 _GL_CXXALIAS_SYS (putc, int, (int c, FILE *stream));
1533 (FILE *stream, const char *format, va_list args)
1537 (FILE *stream, const char *format, va_list args));
1540 (FILE *stream, const char *format, va_list args));