Home
last modified time | relevance | path

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

/titanic_44/usr/src/cmd/sort/common/
H A Dstreams.c258 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()
H A Dstreams_stdio.c336 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()
H A Dtypes.h159 void *s_vbuf; /* stdio alternate buffer */ member