Searched refs:s_vbuf (Results 1 – 3 of 3) sorted by relevance
258 str->s_type.BF.s_vbuf = safe_realloc(NULL, STDIO_VBUF_SIZE); in stream_open_for_read()259 if (setvbuf(str->s_type.BF.s_fp, str->s_type.BF.s_vbuf, _IOFBF, in stream_open_for_read()261 safe_free(str->s_type.BF.s_vbuf); in stream_open_for_read()262 str->s_type.BF.s_vbuf = NULL; in stream_open_for_read()
336 if (str->s_type.BF.s_vbuf != NULL) { in stream_stdio_close()337 free(str->s_type.BF.s_vbuf); in stream_stdio_close()338 str->s_type.BF.s_vbuf = NULL; in stream_stdio_close()
159 void *s_vbuf; /* stdio alternate buffer */ member