Home
last modified time | relevance | path

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

/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dopen_memstream.c31 char **pbuf; /* point to the stream */ member
57 *st->pbuf = st->string = p; in memstream_write()
114 open_memstream(char **pbuf, size_t *psize) in open_memstream() argument
119 if (pbuf == NULL || psize == NULL) { in open_memstream()
142 st->pbuf = pbuf; in open_memstream()
145 *pbuf = st->string; in open_memstream()
Dopen_wmemstream.c32 wchar_t **pbuf; /* point to the stream */ member
59 *st->pbuf = st->string = p; in wmemstream_write()
124 open_wmemstream(wchar_t **pbuf, size_t *psize) in open_wmemstream() argument
129 if (pbuf == NULL || psize == NULL) { in open_wmemstream()
152 st->pbuf = pbuf; in open_wmemstream()
156 *pbuf = st->string; in open_wmemstream()
/bionic/libc/upstream-netbsd/lib/libc/regex/
Dengine.c1168 static char pbuf[10]; in pchar() local
1171 (void)snprintf(pbuf, sizeof pbuf, "%c", ch); in pchar()
1173 (void)snprintf(pbuf, sizeof pbuf, "\\%o", ch); in pchar()
1174 return(pbuf); in pchar()