Home
last modified time | relevance | path

Searched refs:s_vbuf (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/sort/
H A Dstreams.c256 str->s_type.BF.s_vbuf = safe_realloc(NULL, STDIO_VBUF_SIZE); in stream_open_for_read()
257 if (setvbuf(str->s_type.BF.s_fp, str->s_type.BF.s_vbuf, _IOFBF, in stream_open_for_read()
259 safe_free(str->s_type.BF.s_vbuf); in stream_open_for_read()
260 str->s_type.BF.s_vbuf = NULL; in stream_open_for_read()
H A Dstreams_stdio.c334 if (str->s_type.BF.s_vbuf != NULL) { in stream_stdio_close()
335 free(str->s_type.BF.s_vbuf); in stream_stdio_close()
336 str->s_type.BF.s_vbuf = NULL; in stream_stdio_close()
H A Dtypes.h157 void *s_vbuf; /* stdio alternate buffer */ member