/httpd/server/mpm/mpmt_os2/ |
H A D | mpmt_os2_child.c | 64 static apr_pool_t *pchild = NULL; variable 84 if (pchild) { 85 apr_pool_destroy(pchild); 112 apr_pool_create(&pchild, pconf); 114 ap_run_child_init(pchild, ap_server_conf); 162 rc = DosCreateQueue(&workq, QUE_FIFO, apr_psprintf(pchild, "/queues/httpd/work.%d", my_pid)); 183 apr_pollset_create(&pollset, num_listeners, pchild, 0); 201 apr_pool_create(&pconn, pchild); 286 apr_pool_destroy(pchild); 367 apr_os_thread_put(&thd, &osthd, pchild); [all...] |
/httpd/server/mpm/prefork/ |
H A D | prefork.c | 154 static apr_pool_t *pchild; /* Pool for httpd child stuff */ variable 230 if (pchild) { 231 apr_pool_destroy(pchild); 527 apr_pool_create_ex(&pchild, pconf, NULL, allocator); 528 apr_allocator_owner_set(allocator, pchild); 529 apr_pool_tag(pchild, "pchild"); 533 apr_os_thread_put(&thd, &osthd, pchild); 536 apr_pool_create(&ptrans, pchild); 548 ap_reopen_scoreboard(pchild, NUL [all...] |
/httpd/support/ |
H A D | firehose.c | 718 apr_pool_t *pchild; local 720 apr_pool_create(&pchild, pool); 721 rec = apr_pcalloc(pchild, sizeof(uuid_rec)); 722 rec->pool = pchild; 747 apr_pool_t *pchild; local 749 apr_pool_create(&pchild, pool); 750 filter = apr_pcalloc(pchild, sizeof(filter_rec)); 751 filter->pool = pchild;
|
/httpd/server/mpm/winnt/ |
H A D | child.c | 114 static apr_pool_t *pchild; variable 219 * the pchild pool to 'leak' storage. I don't think this 225 context = (winnt_conn_ctx_t *)apr_pcalloc(pchild, 245 rv = apr_pool_create_ex(&context->ptrans, pchild, NULL, 975 apr_pool_create(&pchild, pconf); 976 apr_pool_tag(pchild, "pchild"); 978 ap_run_child_init(pchild, ap_server_conf); 979 ht = apr_hash_make(pchild); 1030 apr_thread_mutex_create(&qlock, APR_THREAD_MUTEX_DEFAULT, pchild); [all...] |
H A D | mpm_winnt.c | 1650 static void winnt_child_init(apr_pool_t *pchild, struct server_rec *s) argument 1654 setup_signal_names(apr_psprintf(pchild, "ap%lu", parent_pid));
|
/httpd/server/mpm/motorz/ |
H A D | motorz.c | 44 static apr_pool_t *pchild; /* Pool for httpd child stuff */ variable 554 if (pchild) { 555 apr_pool_destroy(pchild); 858 apr_pool_create_ex(&pchild, pconf, NULL, allocator); 859 apr_allocator_owner_set(allocator, pchild); 860 apr_pool_tag(pchild, "pchild"); 864 apr_os_thread_put(&thd, &osthd, pchild); 867 apr_pool_create(&ptrans, pchild); 879 ap_reopen_scoreboard(pchild, NUL [all...] |
/httpd/server/mpm/worker/ |
H A D | worker.c | 229 static apr_pool_t *pchild; /* Pool for httpd child stuff */ variable 441 if (pchild) { 442 apr_pool_destroy(pchild); 1028 my_info, pchild); 1060 worker_queue = apr_pcalloc(pchild, sizeof(*worker_queue)); 1061 rv = ap_queue_init(worker_queue, threads_per_child, pchild); 1068 rv = ap_queue_info_create(&worker_queue_info, pchild, 1076 worker_sockets = apr_pcalloc(pchild, threads_per_child 1101 worker_thread, my_info, pchild); 1241 apr_pool_create(&pchild, pcon [all...] |
/httpd/server/mpm/event/ |
H A D | event.c | 422 static apr_pool_t *pchild; /* Pool for httpd child stuff */ variable 655 if (pchild) { 656 apr_pool_destroy(pchild); 2265 my_info, pchild); 2299 worker_queue = apr_pcalloc(pchild, sizeof(*worker_queue)); 2300 rv = ap_queue_init(worker_queue, threads_per_child, pchild); 2314 rv = ap_queue_info_create(&worker_queue_info, pchild, 2326 pchild); 2340 pchild, APR_POLLSET_THREADSAFE | APR_POLLSET_NOCOPY | APR_POLLSET_NODEFAULT, 2352 pchild, APR_POLLSET_THREADSAF [all...] |
/httpd/include/ |
H A D | mpm_common.h | 408 AP_DECLARE_HOOK(int, drop_privileges, (apr_pool_t * pchild, server_rec * s))
|
H A D | http_config.h | 1300 * @param pchild The child pool 1304 AP_DECLARE_HOOK(void,child_init,(apr_pool_t *pchild, server_rec *s))
|
/httpd/server/ |
H A D | mpm_common.c | 96 (apr_pool_t * pchild, server_rec * s), 97 (pchild, s), OK, DECLINED)
|
H A D | config.c | 166 (apr_pool_t *pchild, server_rec *s), 167 (pchild, s))
|
H A D | core.c | 5048 static void core_child_init(apr_pool_t *pchild, server_rec *s) argument 5056 apr_thread_mutex_create(&rng_mutex, APR_THREAD_MUTEX_DEFAULT, pchild);
|