Searched refs:ptrans (Results 1 - 14 of 14) sorted by relevance

/macosx-10.9.5/apache-786.1/httpd/os/beos/
H A Dbeosd.c74 apr_pool_t *ptrans)
80 status = apr_socket_accept(&csd, lr->sd, ptrans);
H A Dbeosd.h56 apr_pool_t *ptrans);
/macosx-10.9.5/apache-786.1/httpd/include/
H A Dap_listen.h38 typedef apr_status_t (*accept_function)(void **csd, ap_listen_rec *lr, apr_pool_t *ptrans);
/macosx-10.9.5/apache-786.1/httpd/server/mpm/winnt/
H A Dchild.c81 * - clear the ptrans pool
88 apr_pool_clear(context->ptrans);
89 context->ba = apr_bucket_alloc_create(context->ptrans);
172 rv = apr_pool_create_ex(&context->ptrans, pchild, NULL, allocator);
181 apr_allocator_owner_set(allocator, context->ptrans);
182 apr_pool_tag(context->ptrans, "transaction");
185 context->ba = apr_bucket_alloc_create(context->ptrans);
439 apr_pool_create_ex(&context->ptrans, pchild, NULL, allocator);
440 apr_allocator_owner_set(allocator, context->ptrans);
441 apr_pool_tag(context->ptrans, "transactio
[all...]
H A Dmpm_winnt.h113 apr_pool_t *ptrans; member in struct:CompContext
/macosx-10.9.5/apache-786.1/httpd/server/mpm/netware/
H A Dmpm_netware.c177 static void clean_child_exit(int code, int worker_num, apr_pool_t *ptrans,
179 static void clean_child_exit(int code, int worker_num, apr_pool_t *ptrans, argument
184 apr_pool_destroy(ptrans);
335 apr_pool_t *ptrans; local
360 apr_pool_create_ex(&ptrans, pmain, NULL, allocator);
361 apr_allocator_owner_set(allocator, ptrans);
362 apr_pool_tag(ptrans, "transaction");
373 apr_pool_clear(ptrans);
378 clean_child_exit(0, my_worker_num, ptrans, bucket_alloc);
391 clean_child_exit(0, my_worker_num, ptrans, bucket_allo
[all...]
/macosx-10.9.5/apache-786.1/httpd/server/mpm/beos/
H A Dbeos.c282 static apr_status_t beos_accept(void **accepted, ap_listen_rec *lr, apr_pool_t *ptrans) argument
289 status = apr_socket_accept(&csd, lr->sd, ptrans);
426 * this we create the ptrans pool, the lifetime of which is the same
430 apr_pool_t *ptrans = NULL; local
457 apr_pool_create(&ptrans, pworker);
458 apr_pool_tag(ptrans, "transaction");
497 apr_pool_clear(ptrans);
570 rv = beos_accept(&csd, lr, ptrans);
579 current_conn = ap_run_create_connection(ptrans, ap_server_conf, csd, worker_slot, sbh, bucket_alloc);
595 apr_pool_destroy(ptrans);
[all...]
/macosx-10.9.5/apache-786.1/httpd/os/unix/
H A Dunixd.h107 AP_DECLARE(apr_status_t) unixd_accept(void **accepted, ap_listen_rec *lr, apr_pool_t *ptrans);
H A Dunixd.c514 apr_pool_t *ptrans)
523 status = apr_socket_accept(&csd, lr->sd, ptrans);
/macosx-10.9.5/apache-786.1/httpd/server/mpm/worker/
H A Dworker.c600 apr_pool_t *ptrans = NULL; /* Pool for per-transaction stuff */ local
640 /* the following pops a recycled ptrans pool off a stack
644 &ptrans);
732 if (ptrans == NULL) {
739 apr_pool_create_ex(&ptrans, pconf, NULL, allocator);
740 apr_allocator_owner_set(allocator, ptrans);
742 apr_pool_tag(ptrans, "transaction");
743 rv = lr->accept_func(&csd, lr, ptrans);
769 rv = ap_queue_push(worker_queue, csd, ptrans);
828 apr_pool_t *ptrans; /* Poo local
[all...]
/macosx-10.9.5/apache-786.1/httpd/server/mpm/experimental/event/
H A Devent.c813 apr_pool_t *ptrans; /* Pool for per-transaction stuff */ local
966 apr_pool_create_ex(&ptrans, pconf, NULL, allocator);
967 apr_allocator_owner_set(allocator, ptrans);
968 if (ptrans == NULL) {
977 ptrans = recycled_pool;
980 apr_pool_tag(ptrans, "transaction");
982 rc = lr->accept_func(&csd, lr, ptrans);
996 rc = ap_queue_push(worker_queue, csd, NULL, ptrans);
1005 apr_pool_clear(ptrans);
1006 ap_push_pool(worker_queue_info, ptrans);
1090 apr_pool_t *ptrans; /* Pool for per-transaction stuff */ local
[all...]
/macosx-10.9.5/apache-786.1/httpd/server/mpm/prefork/
H A Dprefork.c473 apr_pool_t *ptrans; local
501 apr_pool_create(&ptrans, pchild);
502 apr_pool_tag(ptrans, "transaction");
559 apr_pool_clear(ptrans);
648 status = lr->accept_func(&csd, lr, ptrans);
665 current_conn = ap_run_create_connection(ptrans, ap_server_conf, csd, my_child_num, sbh, bucket_alloc);
691 apr_pool_clear(ptrans);
/macosx-10.9.5/apache-786.1/httpd/modules/generators/
H A Dmod_cgid.c600 apr_pool_t *ptrans; local
605 apr_pool_create(&ptrans, pcgi);
680 apr_pool_clear(ptrans);
699 r = apr_pcalloc(ptrans, sizeof(request_rec));
700 procnew = apr_pcalloc(ptrans, sizeof(*procnew));
701 r->pool = ptrans;
748 if (((rc = apr_procattr_create(&procattr, ptrans)) != APR_SUCCESS) ||
773 apr_pool_userdata_set(r, ERRFN_USERDATA_KEY, apr_pool_cleanup_null, ptrans);
792 procattr, ptrans);
796 procattr, ptrans);
[all...]
/macosx-10.9.5/apache-786.1/httpd/server/
H A Dcore.c3945 static conn_rec *core_create_conn(apr_pool_t *ptrans, server_rec *server, argument
3950 conn_rec *c = (conn_rec *) apr_pcalloc(ptrans, sizeof(conn_rec));
3958 c->conn_config = ap_create_conn_config(ptrans);
3959 c->notes = apr_table_make(ptrans, 5);
3961 c->pool = ptrans;

Completed in 118 milliseconds