Searched defs:outbuf (Results 1 - 3 of 3) sorted by relevance
/httpd/modules/filters/ |
H A D | mod_sed.c | 52 char *outbuf; member in struct:sed_filter_ctxt 86 ctx->outbuf = NULL; 96 ctx->outbuf = apr_palloc(ctx->tpool, ctx->bufsize + 1); 97 ctx->curoutbuf = ctx->outbuf; 132 * Flush the output data (stored in ctx->outbuf) 136 int size = ctx->curoutbuf - ctx->outbuf; 139 if ((ctx->outbuf == NULL) || (size <=0)) 141 out = apr_pmemdup(ctx->tpool, ctx->outbuf, size); 143 ctx->curoutbuf = ctx->outbuf; 158 if (ctx->outbuf [all...] |
/httpd/modules/aaa/ |
H A D | mod_authnz_ldap.c | 172 char *outbuf; local 177 outbuf = apr_pcalloc(r->pool, outbytes); 180 if (apr_xlate_conv_buffer(convset, sent_password, &inbytes, outbuf, 182 return outbuf; 216 char *outbuf; local 230 outbuf = apr_pcalloc(r->pool, outbytes); 233 if (apr_xlate_conv_buffer(convset, user, &inbytes, outbuf, &outbytes) == APR_SUCCESS) { 234 user = outbuf;
|
/httpd/modules/loggers/ |
H A D | mod_log_config.c | 256 char outbuf[LOG_BUFSIZE]; member in struct:__anon197 1118 apr_file_write_full(buf->handle, buf->outbuf, buf->outcnt, NULL); 1795 for (i = 0, s = &buf->outbuf[buf->outcnt]; i < nelts; ++i) {
|
Completed in 29 milliseconds