Searched defs:newbuf (Results 1 - 4 of 4) sorted by relevance

/httpd/modules/filters/
H A Dmod_sed.c176 char* newbuf = apr_pmemdup(ctx->tpool, buf, sz); local
177 status = append_bucket(ctx, newbuf, sz);
H A Dmod_proxy_html.c178 char *newbuf; local
184 newbuf = realloc(ctx->buf, ctx->avail);
185 if (newbuf != ctx->buf) {
189 apr_pool_cleanup_register(ctx->f->r->pool, newbuf,
191 ctx->buf = newbuf;
/httpd/modules/dav/main/
H A Dutil.c109 char *newbuf; local
112 newbuf = apr_palloc(p, pbuf->alloc_len);
113 memcpy(newbuf, pbuf->buf, pbuf->cur_len);
114 pbuf->buf = newbuf;
/httpd/modules/metadata/
H A Dmod_mime_magic.c2084 unsigned char *newbuf; local
2098 if ((newsize = uncompress(r, i, &newbuf, HOWMANY)) > 0) {
2102 newbuf[newsize-1] = '\0'; /* null-terminate uncompressed data */
2104 if (tryit(r, newbuf, newsize, 0) != OK) {

Completed in 27 milliseconds