Lines Matching refs:stringbuf
109 char *stringbuf; /* some modules have lots of stuff */ member
122 #define stringbuf (G.stringbuf ) macro
133 stringbuf = xrealloc(stringbuf, stringbuf_size); in append()
135 memcpy(stringbuf + stringbuf_idx, s, len); in append()
143 stringbuf[stringbuf_idx++] = c; in appendc()
160 return memcpy(copy, stringbuf, stringbuf_idx); in copy_stringbuf()
338 stringbuf[stringbuf_idx] = '\0'; in parse_module()
339 last = stringbuf + start; in parse_module()
344 if (strncmp(stringbuf, last, stringbuf_idx - start) == 0) in parse_module()
346 found = stringbuf; in parse_module()
349 found = strstr(stringbuf, last-1); in parse_module()