Lines Matching refs:bufp
48 wchar_t **bufp; member
74 buf = realloc(*ms->bufp, (newsize + 1) * sizeof(wchar_t)); in wmemstream_grow()
81 *ms->bufp = buf; in wmemstream_grow()
149 charlen = mbrtowc(*ms->bufp + ms->offset, buf, len, in wmemstream_write()
242 open_wmemstream(wchar_t **bufp, size_t *sizep) in open_wmemstream() argument
248 if (bufp == NULL || sizep == NULL) { in open_wmemstream()
252 *bufp = calloc(1, sizeof(wchar_t)); in open_wmemstream()
253 if (*bufp == NULL) in open_wmemstream()
258 free(*bufp); in open_wmemstream()
259 *bufp = NULL; in open_wmemstream()
263 ms->bufp = bufp; in open_wmemstream()
274 free(*bufp); in open_wmemstream()
275 *bufp = NULL; in open_wmemstream()