Searched refs:pchild (Results 1 - 15 of 15) sorted by relevance

/macosx-10.10.1/apr-32/apr/apr/test/
H A Dtestpools.c33 static apr_pool_t *pchild = NULL; variable
80 rv = apr_pool_create(&pchild, pmain);
82 ABTS_PTR_NOTNULL(tc, pchild);
87 ABTS_INT_EQUAL(tc, 1, apr_pool_is_ancestor(pmain, pchild));
92 ABTS_INT_EQUAL(tc, 0, apr_pool_is_ancestor(pchild, pmain));
114 apr_pool_cleanup_register(pchild, NULL, success_cleanup,
116 apr_pool_cleanup_register(pchild, checker_data, checker_cleanup,
118 apr_pool_cleanup_register(pchild, NULL, checker_cleanup,
130 apr_pool_clear(pchild);
135 apr_pool_cleanup_register(pchild, NUL
[all...]
/macosx-10.10.1/apache-793/httpd/server/mpm/mpmt_os2/
H A Dmpmt_os2_child.c64 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...]
/macosx-10.10.1/tcsh-65/tcsh/
H A Dtc.sig.c77 pchild();
H A Dsh.decls.h346 extern void pchild (void);
H A Dsh.proc.c140 * pchild - call queued by the SIGCHLD signal
147 pchild(void) function
175 jobdebug_xprintf(("pchild()\n"));
1581 * 3. The "csh" signal handling function pchild() is invoked
1583 * 4. pchild() calls wait3(WNOHANG) which returns 0.
1585 * pchild() returns without picking-up the correct status
1756 * Hold pchild() until we have the process installed in our table.
/macosx-10.10.1/apache-793/httpd/server/mpm/prefork/
H A Dprefork.c144 static apr_pool_t *pchild; /* Pool for httpd child stuff */ variable
217 if (pchild) {
218 apr_pool_destroy(pchild);
512 apr_pool_create_ex(&pchild, pconf, NULL, allocator);
513 apr_allocator_owner_set(allocator, pchild);
514 apr_pool_tag(pchild, "pchild");
518 apr_os_thread_put(&thd, &osthd, pchild);
521 apr_pool_create(&ptrans, pchild);
525 ap_reopen_scoreboard(pchild, NUL
[all...]
/macosx-10.10.1/apache-793/httpd/server/mpm/winnt/
H A Dchild.c114 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,
971 apr_pool_create(&pchild, pconf);
972 apr_pool_tag(pchild, "pchild");
974 ap_run_child_init(pchild, ap_server_conf);
975 ht = apr_hash_make(pchild);
1018 apr_thread_mutex_create(&qlock, APR_THREAD_MUTEX_DEFAULT, pchild);
[all...]
H A Dmpm_winnt.c1651 static void winnt_child_init(apr_pool_t *pchild, struct server_rec *s) argument
1655 setup_signal_names(apr_psprintf(pchild, "ap%lu", parent_pid));
/macosx-10.10.1/apache-793/httpd/server/mpm/worker/
H A Dworker.c213 static apr_pool_t *pchild; /* Pool for httpd child stuff */ variable
428 if (pchild) {
429 apr_pool_destroy(pchild);
1014 my_info, pchild);
1046 worker_queue = apr_pcalloc(pchild, sizeof(*worker_queue));
1047 rv = ap_queue_init(worker_queue, threads_per_child, pchild);
1054 rv = ap_queue_info_create(&worker_queue_info, pchild,
1062 worker_sockets = apr_pcalloc(pchild, threads_per_child
1087 worker_thread, my_info, pchild);
1226 apr_pool_create(&pchild, pcon
[all...]
/macosx-10.10.1/apache-793/httpd/server/mpm/event/
H A Devent.c346 static apr_pool_t *pchild; /* Pool for httpd child stuff */ variable
573 if (pchild) {
574 apr_pool_destroy(pchild);
1853 my_info, pchild);
1887 worker_queue = apr_pcalloc(pchild, sizeof(*worker_queue));
1888 rv = ap_queue_init(worker_queue, threads_per_child, pchild);
1902 rv = ap_queue_info_create(&worker_queue_info, pchild,
1914 pchild);
1928 pchild, APR_POLLSET_THREADSAFE | APR_POLLSET_NOCOPY | APR_POLLSET_NODEFAULT,
1940 pchild, APR_POLLSET_THREADSAF
[all...]
/macosx-10.10.1/apache-793/httpd/include/
H A Dmpm_common.h399 AP_DECLARE_HOOK(int, drop_privileges, (apr_pool_t * pchild, server_rec * s))
H A Dhttp_config.h1292 * @param pchild The child pool
1295 AP_DECLARE_HOOK(void,child_init,(apr_pool_t *pchild, server_rec *s))
/macosx-10.10.1/apache-793/httpd/server/
H A Dmpm_common.c94 (apr_pool_t * pchild, server_rec * s),
95 (pchild, s), OK, DECLINED)
H A Dconfig.c166 (apr_pool_t *pchild, server_rec *s),
167 (pchild, s))
H A Dcore.c4701 static void core_child_init(apr_pool_t *pchild, server_rec *s) argument
4709 apr_thread_mutex_create(&rng_mutex, APR_THREAD_MUTEX_DEFAULT, pchild);

Completed in 303 milliseconds