Lines Matching full:stream
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));
199 /* Flush all pending data on STREAM according to POSIX rules. Both
201 Note! LOSS OF DATA can occur if fflush is applied on an input stream
202 that is _not_seekable_ or on an update stream that is _not_seekable_
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));
304 /* Discard all pending buffered I/O data on STREAM.
305 STREAM must not be wide-character oriented.
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));
382 (const char *filename, const char *mode, FILE *stream)
385 (const char *filename, const char *mode, FILE *stream));
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, ...));
444 Most gnulib clients that perform stream operations should fall into
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)
592 size_t r = fwrite (ptr, s, n, 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));
633 STREAM, store it in *LINEPTR (and NUL-terminate it).
645 FILE *stream)
649 FILE *stream));
654 FILE *stream)
659 FILE *stream));
671 /* Read a line, up to (and including) the next newline, from STREAM, store it
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));
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));
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));