Home | History | Annotate | Download | only in Include

Lines Matching refs:setvbuf

20     int       setvbuf         (FILE * __restrict, char * __restrict,

280 made them official arguments to setvbuf(), without renaming them.
286 #define _IOFBF 0 /**< setvbuf should set fully buffered */
287 #define _IOLBF 1 /**< setvbuf should set line buffered */
288 #define _IONBF 2 /**< setvbuf should set unbuffered */
455 possibly an unsuccessful call to setvbuf, performed prior to the call to setbuf.
459 This is equivalent to calling setvbuf(fp, Buff, _IOFBF, BUFSIZ);
462 This is equivalent to calling setvbuf(fp, NULL, _IONBF, 0);
472 possibly an unsuccessful call to setvbuf, performed prior to the call to setbuf.
481 by the setvbuf function if BufMode is not _IONBF.
493 int setvbuf (FILE * __restrict fp, char * __restrict Buff, int BufMode, size_t BufSize);