Searched defs:te (Results 1 - 4 of 4) sorted by relevance

/httpd/server/mpm/event/
H A Dfdqueue.c394 apr_status_t ap_queue_push_timer(fd_queue_t * queue, timer_event_t *te) argument
404 APR_RING_INSERT_TAIL(&queue->timers, te, timer_event_t, link);
H A Devent.c1382 static apr_status_t push_timer2worker(timer_event_t* te) argument
1384 return ap_queue_push_timer(worker_queue, te);
1486 timer_event_t *te; local
1492 te = APR_RING_FIRST(&timer_free_ring);
1493 APR_RING_REMOVE(te, link);
1496 te = apr_skiplist_alloc(timer_skiplist, sizeof(timer_event_t));
1497 APR_RING_ELEM_INIT(te, link);
1500 te->cbfunc = cbfn;
1501 te->baton = baton;
1502 te
1770 timer_event_t *te; local
2164 timer_event_t *te = NULL; local
[all...]
/httpd/server/mpm/motorz/
H A Dmotorz.c237 static apr_status_t motorz_timer_event_process(motorz_core_t *mz, motorz_timer_t *te) argument
239 motorz_conn_t *scon = (motorz_conn_t *)te->baton;
244 te, APR_THREAD_TASK_PRIORITY_NORMAL, NULL);
981 motorz_timer_t *te; local
985 te = apr_skiplist_peek(mz->timer_ring);
987 if (te) {
988 if (tnow < te->expires) {
989 timeout = (te->expires - tnow);
1015 while (te && te
[all...]
/httpd/modules/proxy/
H A Dmod_proxy_http.c1318 const char *te = NULL; local
1546 te = apr_table_get(r->headers_out, "Transfer-Encoding");
1718 else if (te) {
1719 apr_table_set(backend->r->headers_in, "Transfer-Encoding", te);
1744 if (te && !apr_table_get(backend->r->headers_in, "Transfer-Encoding")) {
1745 apr_table_add(backend->r->headers_in, "Transfer-Encoding", te);

Completed in 2784 milliseconds