Lines Matching full:stream
44 .Nd check and reset stream status
50 .Fn clearerr "FILE *stream"
52 .Fn clearerr_unlocked "FILE *stream"
54 .Fn feof "FILE *stream"
56 .Fn feof_unlocked "FILE *stream"
58 .Fn ferror "FILE *stream"
60 .Fn ferror_unlocked "FILE *stream"
62 .Fn fileno "FILE *stream"
64 .Fn fileno_unlocked "FILE *stream"
68 clears the end-of-file and error indicators for the stream pointed
70 .Fa stream .
74 tests the end-of-file indicator for the stream pointed to by
75 .Fa stream ,
84 tests the error indicator for the stream pointed to by
85 .Fa stream ,
91 .Fa stream
106 respectively, except that the caller is responsible for locking the stream
110 These functions may be used to avoid the overhead of locking the stream
111 and to prevent races when multiple threads are operating on the same stream.
125 The stream is not associated with a file.
127 The file descriptor underlying stream is not a valid file descriptor.