Searched defs:newbuf (Results 1 - 4 of 4) sorted by relevance
/httpd/modules/filters/ |
H A D | mod_sed.c | 176 char* newbuf = apr_pmemdup(ctx->tpool, buf, sz); local 177 status = append_bucket(ctx, newbuf, sz);
|
H A D | mod_proxy_html.c | 178 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 D | util.c | 109 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 D | mod_mime_magic.c | 2084 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 331 milliseconds