Lines Matching defs:te
237 static apr_status_t motorz_timer_event_process(motorz_core_t *mz, motorz_timer_t *te)
239 motorz_conn_t *scon = (motorz_conn_t *)te->baton;
244 te, APR_THREAD_TASK_PRIORITY_NORMAL, NULL);
981 motorz_timer_t *te;
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->expires < tnow) {
1017 motorz_timer_event_process(mz, te);
1018 te = apr_skiplist_peek(mz->timer_ring);