Searched defs:tail (Results 1 - 3 of 3) sorted by relevance
/httpd/modules/filters/ |
H A D | mod_data.c | 81 * so we don't know when to flush the tail to the network. 132 apr_size_t tail; local 143 /* write away the tail */ 166 /* flush what we can, we can't flush the tail until EOS */ 209 tail = size % sizeof(ctx->overflow); 210 size -= tail; 217 /* save away any tail in the overflow buffer */ 218 if (tail) { 219 memcpy(ctx->overflow, data + size, tail); 220 ctx->count += tail; [all...] |
/httpd/modules/metadata/ |
H A D | mod_mime_magic.c | 464 magic_rsl *tail; member in struct:__anon261 536 req_dat->head = req_dat->tail = (magic_rsl *) NULL; 567 if (req_dat->head && req_dat->tail) { 568 req_dat->tail->next = rsl; 569 req_dat->tail = rsl; 572 req_dat->head = req_dat->tail = rsl; 720 frag = req_dat->tail;
|
/httpd/server/mpm/event/ |
H A D | event.c | 3443 struct timeout_queue *tail, *q; member in struct:__anon368 3452 wc.tail = ka.tail = NULL; 3465 if (!wc.tail) { 3469 wc.tail = write_completion_q = wc.q; 3474 ka.tail = keepalive_q = ka.q; 3481 TO_QUEUE_INIT(wc.q, pconf, s->timeout, wc.tail); 3483 wc.tail = wc.tail->next = wc.q; 3489 TO_QUEUE_INIT(ka.q, pconf, s->keep_alive_timeout, ka.tail); [all...] |
Completed in 35 milliseconds