Searched defs:errfile (Results 1 - 6 of 6) sorted by relevance

/httpd/support/
H A Dhttxt2dbm.c41 static apr_file_t *errfile; variable
82 apr_file_printf(errfile,
159 apr_file_printf(errfile, " '%s' -> '%s'" NL,
202 apr_file_open_stderr(&errfile, pool);
206 apr_file_printf(errfile, "Error: apr_getopt_init failed." NL NL);
219 apr_file_printf(errfile, "Error: -v can only be passed once" NL NL);
227 apr_file_printf(errfile, "Error: -f can only be passed once" NL NL);
235 apr_file_printf(errfile, "Error: -i can only be passed once" NL NL);
243 apr_file_printf(errfile, "Error: -o can only be passed once" NL NL);
253 apr_file_printf(errfile, "Erro
[all...]
H A Dlogresolve.c75 static apr_file_t *errfile; variable
118 apr_file_printf(errfile,
158 apr_file_open_stderr(&errfile, pool);
320 apr_file_printf(errfile, "%s: Could not open %s for writing.",
H A Dpasswd_common.c51 apr_file_t *errfile; variable
83 apr_file_printf(errfile, "generate_salt(): BUG: Buffer too small");
114 apr_file_printf(errfile, "Error writing temp file: %pm", &rv);
190 apr_file_printf(errfile,
241 apr_file_printf(errfile, "Warning: Password truncated to 8 "
273 apr_file_printf(errfile, "mkhash(): BUG: invalid algorithm %d",
301 apr_file_printf(errfile,
311 apr_file_printf(errfile,
338 apr_file_printf(errfile,
H A Dhtdigest.c64 apr_file_t *errfile; variable
137 apr_file_printf(errfile, "password too long");
143 apr_file_printf(errfile, "They don't match, sorry.\n");
167 apr_file_printf(errfile, "Usage: htdigest [-c] passwordfile realm username\n");
168 apr_file_printf(errfile, "The -c flag creates a new file.\n");
174 apr_file_printf(errfile, "Interrupted.\n");
203 apr_file_open_stderr(&errfile, cntxt);
208 apr_file_printf(errfile, "apr_xlate_open(): %pm (%d)\n",
221 apr_file_printf(errfile, "Could not open passwd file %s for writing: %pm\n",
227 apr_file_printf(errfile, "Addin
[all...]
H A Dhtcacheclean.c109 static apr_file_t *errfile; /* stderr file handle */ variable
146 apr_file_printf(errfile, "would delete %s" APR_EOL_STR, pathname);
156 apr_file_printf(errfile, "interrupt" APR_EOL_STR);
213 apr_file_printf(errfile, "Cleaned %s. Statistics:" APR_EOL_STR, path);
226 apr_file_printf(errfile, "unsolicited size %d.%d%c" APR_EOL_STR,
229 apr_file_printf(errfile, "size limit %" APR_OFF_T_FMT ".0%c" APR_EOL_STR,
231 apr_file_printf(errfile, "inodes limit %" APR_OFF_T_FMT APR_EOL_STR,
234 errfile,
238 apr_file_printf(errfile, "total inodes was %" APR_OFF_T_FMT
243 errfile,
[all...]
/httpd/server/
H A Dlog.c257 apr_file_t *errfile; local
276 if ((rc = apr_file_open_stdout(&errfile, p)) == APR_SUCCESS)
277 rc = apr_procattr_child_err_set(procattr, errfile, NULL);
487 apr_file_t *errfile = NULL; local
489 apr_file_open_stderr(&errfile, s->process->pool);
491 apr_file_dup2(s->error_log, errfile, s->process->pool);

Completed in 1660 milliseconds