Lines Matching full:file
20 <<fflush>>, <<fflush_unlocked>>---flush buffered file output
33 int fflush(FILE *<[fp]>);
37 int fflush_unlocked(FILE *<[fp]>);
40 int fflush( FILE *<[fp]>);
44 int fflush_unlocked( FILE *<[fp]>);
50 Use <<fflush>> to deliver any such pending output (for the file
56 Additionally, if <[fp]> is a seekable input stream visiting a file
57 descriptor, set the position of the file descriptor to match next
65 if they are called while the invoking thread owns the (FILE *)
98 /* Flush a single file, or (if fp is NULL) all files. */
100 /* Core function which does not lock file pointer. This gets called
104 register FILE * fp) in _sflush()
123 the next byte from the file rather than the buffer. This conforms in _sflush()
142 /* Get the physical position we are at in the file. */ in _sflush()
237 /* Called from cleanup_stdio(). At exit time, we don't need file locking,
238 and we don't want to move the underlying file pointer unless we're
242 register FILE *fp) in _sflushw()
251 fflush (register FILE * fp) in fflush()
263 we will end up changing said file pointers to the equivalent in fflush()
267 or 2) simply recognize that this file has nothing to flush in fflush()