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

/httpd/support/
H A Dlogresolve.c89 * prints various statistics to output
92 static void print_statistics (apr_file_t *output) argument
94 apr_file_printf(output, "logresolve Statistics:" NL);
95 apr_file_printf(output, "Entries: %d" NL, entries);
96 apr_file_printf(output, " With name : %d" NL, withname);
97 apr_file_printf(output, " Resolves : %d" NL, resolves);
100 apr_file_printf(output, " - No reverse : %d" NL,
105 apr_file_printf(output, " - Double lookup failed : %d" NL,
109 apr_file_printf(output, "Cache hits : %d" NL, cachehits);
110 apr_file_printf(output, "Cach
[all...]
H A Dhttxt2dbm.c38 static const char *output; variable
87 " -v More verbose output" NL
191 output = NULL;
242 if (output) {
247 output = apr_pstrdup(pool, opt_arg);
264 if (!output) {
265 apr_file_printf(errfile, "Error: No output DBM specified." NL NL);
297 rv = apr_dbm_open_ex(&outdbm, format, output, APR_DBM_RWCREATE,
309 "Error: Cannot open output DBM '%s': (%d) %pm" NL NL,
310 output, r
[all...]
H A Dapxs.in314 # Additional -v pretty-prints output
386 # determine output file
743 ** output of this module. This can be achieved for instance via:
747 ** The output should be similar to the following one:
/httpd/build/
H A DNWGNUhead.inc62 @echo $(DL)clobber_all . . . deletes all possible output from the make$(DL)
/httpd/modules/filters/
H A Dmod_sed.c40 sed_expr_config output; member in struct:sed_config
92 * allocate output buffer
132 * Flush the output data (stored in ctx->outbuf)
147 /* This is a call back function. When libsed wants to generate the output,
173 /* if size is bigger than the allocated buffer directly add to output
239 * output by calling sed_write_output and generates any error by
266 /* Entry function for Sed output filter */
275 sed_expr_config *sed_cfg = &cfg->output;
303 * line. sed_eval_buffer will generates the output by calling
304 * sed_write_output which will add the output t
[all...]
H A Dmod_charset_lite.c44 #define OUTPUT_XLATE_BUF_SIZE (16*1024) /* size of translation buffer used on output */
67 /* registered name of the output translation filter */
190 * configured and the input or output potentially need to be translated.
242 /* Get storage for the request data and the output filter context.
324 "xlate output filter not added implicitly because "
335 "xlate output filter not added implicitly because %s",
337 "no output configuration available" :
434 /* output buffer: */
549 int output = !strcasecmp(f->frec->name, XLATEOUT_FILTER_NAME); local
558 curf = output
[all...]
/httpd/modules/lua/
H A Dmod_lua.c332 /* ------------------- Input/output content filters ------------------- */
451 const char* output = lua_tolstring(ctx->L, 1, &olen); local
457 pbktOut = apr_bucket_heap_create(output, olen, NULL, c->bucket_alloc);
489 const char* output = lua_tolstring(L, 1, &olen); local
491 pbktOut = apr_bucket_heap_create(output, olen, NULL,
522 const char* output = lua_tolstring(L, 1, &olen); local
524 pbktOut = apr_bucket_heap_create(output, olen, NULL,
618 const char* output = lua_tolstring(L, 1, &olen); local
619 pbktOut = apr_bucket_heap_create(output, olen, 0, c->bucket_alloc);
641 const char* output local
[all...]
/httpd/modules/dav/main/
H A Dmod_dav.h649 ** inserted into the output XML stream.
796 ** to namespace IDs for output generation.
1061 ** returns found==1. If the output process needs the dav_xmlns_info
1065 ** Note: this will *always* be called during an output sequence. Thus,
1079 ** It can also be used to look up prefixes or URIs during the output
1884 ap_filter_t *output);
2222 ** output filter.
2226 ** construct an appropriate error response. Once some output has
2237 ap_filter_t *output);
2358 ap_filter_t *output);
[all...]
H A Dmod_dav.c425 ap_filter_t *output,
431 ap_fputs(output, bb, "<D:response>");
434 ap_fputs(output, bb, "<D:response");
436 ap_fputs(output, bb, t->text);
438 ap_fputc(output, bb, '>');
441 ap_fputstrs(output, bb,
452 ap_fputstrs(output, bb,
461 ap_fputs(output, bb, t->text);
470 ap_fputstrs(output, bb,
477 ap_fputs(output, b
423 dav_send_one_response(dav_response *response, apr_bucket_brigade *bb, ap_filter_t *output, apr_pool_t *pool) argument
[all...]
/httpd/modules/mappers/
H A Dmod_rewrite.c317 char *output; /* the Substitution string */ member in struct:__anon238
952 char *output; local
963 output = apr_palloc(r->pool, outlen + 1); /* don't forget the \0 */
965 memcpy(output, subst, slen);
966 if (slen && !output[slen-1]) {
967 output[slen-1] = '/';
969 memcpy(output+slen, input+len, outlen - slen);
970 output[outlen] = '\0';
973 output));
975 return output;
[all...]
/httpd/modules/dav/fs/
H A Drepos.c396 "Could not delete output after read "
423 "Could not delete output after write "
429 "Could not write output file");
1072 ap_filter_t *output)
1100 bb = apr_brigade_create(pool, output->c->bucket_alloc);
1104 bkt = apr_bucket_eos_create(output->c->bucket_alloc);
1107 if ((status = ap_pass_brigade(output, bb)) != APR_SUCCESS) {
1071 dav_fs_deliver(const dav_resource *resource, ap_filter_t *output) argument

Completed in 1304 milliseconds