Searched defs:ptrans (Results 1 - 9 of 9) sorted by relevance

/httpd/server/mpm/simple/
H A Dsimple_io.c259 apr_pool_t *ptrans; local
264 apr_pool_create(&ptrans, NULL);
266 apr_pool_tag(ptrans, "transaction");
268 rv = apr_socket_accept(&socket, lr->sd, ptrans);
282 simple_conn_t *scon = apr_pcalloc(ptrans, sizeof(simple_conn_t));
283 scon->pool = ptrans;
/httpd/server/mpm/winnt/
H A Dchild.c99 apr_pool_t *ptrans; member in struct:winnt_conn_ctx_t_s
132 * - clear the ptrans pool
139 apr_pool_clear(context->ptrans);
140 context->ba = apr_bucket_alloc_create(context->ptrans);
245 rv = apr_pool_create_ex(&context->ptrans, pchild, NULL,
256 apr_allocator_owner_set(allocator, context->ptrans);
257 apr_pool_tag(context->ptrans, "transaction");
260 context->ba = apr_bucket_alloc_create(context->ptrans);
717 apr_os_sock_make(&context->sock, &sockinfo, context->ptrans);
848 ap_create_sb_handle(&sbh, context->ptrans,
[all...]
/httpd/server/mpm/motorz/
H A Dmotorz.c193 apr_pool_t *ptrans; local
197 apr_pool_create(&ptrans, NULL);
199 apr_pool_tag(ptrans, "transaction");
201 rv = lr->accept_func((void *)&socket, lr, ptrans);
208 motorz_conn_t *scon = apr_pcalloc(ptrans, sizeof(motorz_conn_t));
209 scon->pool = ptrans;
834 apr_pool_t *ptrans; local
867 apr_pool_create(&ptrans, pchild);
868 apr_pool_tag(ptrans, "transaction");
971 apr_pool_clear(ptrans);
[all...]
/httpd/server/mpm/netware/
H A Dmpm_netware.c176 static void clean_child_exit(int code, int worker_num, apr_pool_t *ptrans,
178 static void clean_child_exit(int code, int worker_num, apr_pool_t *ptrans, argument
183 apr_pool_destroy(ptrans);
339 apr_pool_t *ptrans; local
368 apr_pool_create_ex(&ptrans, pmain, NULL, allocator);
369 apr_allocator_owner_set(allocator, ptrans);
370 apr_pool_tag(ptrans, "transaction");
381 apr_pool_clear(ptrans);
386 clean_child_exit(0, my_worker_num, ptrans, bucket_alloc);
399 clean_child_exit(0, my_worker_num, ptrans, bucket_allo
[all...]
/httpd/server/mpm/prefork/
H A Dprefork.c501 apr_pool_t *ptrans; local
536 apr_pool_create(&ptrans, pchild);
537 apr_pool_tag(ptrans, "transaction");
621 apr_pool_clear(ptrans);
706 status = lr->accept_func(&csd, lr, ptrans);
723 current_conn = ap_run_create_connection(ptrans, ap_server_conf, csd, my_child_num, sbh, bucket_alloc);
748 apr_pool_clear(ptrans); /* kludge to avoid crash in APR reslist cleanup code */
/httpd/modules/generators/
H A Dmod_cgid.c605 apr_pool_t *ptrans; local
610 apr_pool_create(&ptrans, pcgi);
690 apr_pool_clear(ptrans);
709 r = apr_pcalloc(ptrans, sizeof(request_rec));
710 procnew = apr_pcalloc(ptrans, sizeof(*procnew));
711 r->pool = ptrans;
760 if (((rc = apr_procattr_create(&procattr, ptrans)) != APR_SUCCESS) ||
803 apr_pool_userdata_set(r, ERRFN_USERDATA_KEY, apr_pool_cleanup_null, ptrans);
822 procattr, ptrans);
826 procattr, ptrans);
[all...]
/httpd/server/mpm/worker/
H A Dworker.c699 apr_pool_t *ptrans = NULL; /* Pool for per-transaction stuff */ local
754 /* the following pops a recycled ptrans pool off a stack
758 &ptrans);
836 if (ptrans == NULL) {
843 apr_pool_create_ex(&ptrans, pconf, NULL, allocator);
844 apr_allocator_owner_set(allocator, ptrans);
846 apr_pool_tag(ptrans, "transaction");
847 rv = lr->accept_func(&csd, lr, ptrans);
865 rv = ap_queue_push(worker_queue, csd, ptrans);
924 apr_pool_t *ptrans; /* Poo local
[all...]
/httpd/server/
H A Dcore.c4890 static conn_rec *core_create_conn(apr_pool_t *ptrans, server_rec *s, argument
4896 conn_rec *c = (conn_rec *) apr_pcalloc(ptrans, sizeof(conn_rec));
4905 apr_pool_create(&pool, ptrans);
/httpd/server/mpm/event/
H A Devent.c1972 apr_pool_t *ptrans; /* Pool for per-transaction stuff */ local
1973 ap_pop_pool(&ptrans, worker_queue_info);
1975 if (ptrans == NULL) {
1982 apr_pool_create_ex(&ptrans, pconf, NULL, allocator);
1983 apr_allocator_owner_set(allocator, ptrans);
1984 if (ptrans == NULL) {
1992 apr_pool_tag(ptrans, "transaction");
1995 rc = lr->accept_func(&csd, lr, ptrans);
2010 rc = ap_queue_push(worker_queue, csd, NULL, ptrans);
2019 ap_push_pool(worker_queue_info, ptrans);
2165 apr_pool_t *ptrans; /* Pool for per-transaction stuff */ local
[all...]

Completed in 54 milliseconds