Searched defs:head (Results 1 - 6 of 6) sorted by relevance
/httpd/server/mpm/simple/ |
H A D | simple_run.c | 152 simple_timer_t *head; local 157 head = APR_RING_FIRST(&sc->timer_ring); 159 if (head != APR_RING_SENTINEL(&sc->timer_ring, simple_timer_t, link)) { 160 if (tnow < head->expires) { 161 timeout = (head->expires - tnow);
|
/httpd/modules/proxy/ |
H A D | ajp_msg.c | 151 apr_byte_t *head = msg->buf; local 154 if (!((head[0] == 0x41 && head[1] == 0x42) || 155 (head[0] == 0x12 && head[1] == 0x34))) { 159 head[0], head[1]); 164 msglen = ((head[2] & 0xff) << 8); 165 msglen += (head[3] & 0xFF);
|
/httpd/modules/arch/win32/ |
H A D | mod_isapi.c | 621 * head/headlen alone (leaving stat/statlen NULL/0), so that they 623 * isn't counted as the head bytes are. 627 const char *head, 638 if (!head || headlen == 0 || !*head) { 639 head = stat; 647 if (head && headlen && *head && ((stat = memchr(head, '\r', headlen)) 648 || (stat = memchr(head, '\ 625 send_response_header(isapi_cid *cid, const char *stat, const char *head, apr_size_t statlen, apr_size_t headlen) argument [all...] |
/httpd/modules/generators/ |
H A D | mod_autoindex.c | 178 " <head>\n <title>Index of ", title, 182 "<html>\n <head>\n" 194 ap_rputs(" </head>\n <body>\n", r); 2013 struct ent *head, *p; local 2200 head = NULL; 2203 p->next = head; 2204 head = p; 2241 p->next = head; 2242 head = p; 2250 p = head; [all...] |
/httpd/modules/metadata/ |
H A D | mod_mime_magic.c | 290 "<head>", L_HTML 457 struct magic *magic; /* head of magic config list */ 463 magic_rsl *head; /* result string list */ member in struct:__anon261 536 req_dat->head = req_dat->tail = (magic_rsl *) NULL; 567 if (req_dat->head && req_dat->tail) { 572 req_dat->head = req_dat->tail = rsl; 628 for (frag = req_dat->head, cur_frag = 0; 684 if (!req_dat || !req_dat->head) { 693 for (frag = req_dat->head, cur_frag = 0;
|
/httpd/server/mpm/event/ |
H A D | event.c | 232 struct timeout_head_t head; member in struct:timeout_queue 258 APR_RING_INSERT_TAIL(&(q)->head, el, event_conn_state_t, \ 275 APR_RING_INIT(&(q)->head, event_conn_state_t, timeout_list); \ 1683 cs = first = APR_RING_FIRST(&qp->head); 1684 while (cs != APR_RING_SENTINEL(&qp->head, event_conn_state_t,
|
Completed in 105 milliseconds