Searched refs:outbuf (Results 1 - 1 of 1) sorted by relevance

/solaris-userland-s11u3/components/apache2/mod_sed/
H A Dmod_sed.c51 char *outbuf; member in struct:sed_filter_ctxt
85 ctx->outbuf = NULL;
95 ctx->outbuf = apr_palloc(ctx->tpool, ctx->bufsize + 1);
96 ctx->curoutbuf = ctx->outbuf;
131 * Flush the output data (stored in ctx->outbuf)
135 int size = ctx->curoutbuf - ctx->outbuf;
138 if ((ctx->outbuf == NULL) || (size <=0))
141 memcpy(out, ctx->outbuf, size);
143 ctx->curoutbuf = ctx->outbuf;
158 if (ctx->outbuf
[all...]

Completed in 11 milliseconds