Lines Matching defs:stderr_pool
100 static apr_pool_t *stderr_pool = NULL;
200 if (!stderr_pool) {
204 stderr_pool = p;
206 if ((rc = apr_file_open_stderr(&stderr_log, stderr_pool))
209 if ((rc = apr_file_dup2(stderr_log, stderr_file, stderr_pool))
213 * You might ponder why stderr_pool should survive?
214 * The trouble is, stderr_pool may have s_main->error_log,
215 * so we aren't in a position to destory stderr_pool until
224 if (stderr_pool == p)
225 stderr_pool = NULL;
387 * Create our stderr_pool as a child of the plog's
391 apr_pool_tag(stderr_p, "stderr_pool");
409 /* We are done with stderr_pool, close it, killing
412 if (stderr_pool)
413 apr_pool_destroy(stderr_pool);
414 stderr_pool = stderr_p;