Searched refs:head (Results 1 - 7 of 7) sorted by relevance

/httpd/build/
H A Ddefault.pl30 <head>
33 </head>
52 <head>
54 </head>
103 <head>
105 </head>
140 <head>
142 </head>
185 <head>
187 </head>
[all...]
/httpd/modules/arch/win32/
H A Dmod_isapi.c621 * 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/proxy/
H A Dajp_msg.c151 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/server/mpm/simple/
H A Dsimple_run.c152 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/generators/
H A Dmod_autoindex.c178 " <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 Dmod_mime_magic.c290 "<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 Devent.c232 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 1769 milliseconds