Lines Matching refs:bufp
47 wchar_t **bufp; member
65 buf = reallocarray(*ms->bufp, newsize + 1, sizeof(wchar_t)); in wmemstream_grow()
72 *ms->bufp = buf; in wmemstream_grow()
141 charlen = mbrtowc(*ms->bufp + ms->offset, buf, len, in wmemstream_write()
234 open_wmemstream(wchar_t **bufp, size_t *sizep) in open_wmemstream() argument
240 if (bufp == NULL || sizep == NULL) { in open_wmemstream()
244 *bufp = calloc(1, sizeof(wchar_t)); in open_wmemstream()
245 if (*bufp == NULL) in open_wmemstream()
250 free(*bufp); in open_wmemstream()
251 *bufp = NULL; in open_wmemstream()
255 ms->bufp = bufp; in open_wmemstream()
266 free(*bufp); in open_wmemstream()
267 *bufp = NULL; in open_wmemstream()