Lines Matching refs:stream
164 #define fdev_setup_stream(stream, p, g, fl, f) \ argument
166 (stream)->flags = f; \
167 (stream)->put = p; \
168 (stream)->get = g; \
169 (stream)->flush = fl; \
200 int fflush(FILE *stream);
334 int fgetpos(FILE * __restrict stream, fpos_t * __restrict pos);
336 FILE *freopen(const char *path, const char *mode, FILE *stream);
339 int fseek(FILE *stream, long offset, int whence);
340 int fseeko(FILE *stream, __off_t offset, int whence);
341 int fsetpos(FILE *stream, const fpos_t *pos);
342 long ftell(FILE *stream);
343 __off_t ftello(FILE *stream);
348 void rewind(FILE *stream);
349 void setbuf(FILE *stream, char *buf);
350 void setbuffer(FILE *stream, char *buf, size_t size);
351 void setlinebuf(FILE *stream);
352 int setvbuf(FILE *stream, char *buf, int mode, size_t size);
355 _ssize_t getline(char **__restrict lineptr, size_t *__restrict n, FILE *__restrict stream);
356 …e_t getdelim(char **__restrict lineptr, size_t *__restrict n, int delim, FILE *__restrict stream);