Searched defs:hdr (Results 1 - 7 of 7) sorted by relevance

/httpd/server/
H A Dapreq_cookie.c177 const char *hdr, *key, *val; local
179 hdr = *data;
181 while (apr_isspace(*hdr) || *hdr == '=')
182 ++hdr;
184 key = hdr;
185 *n = hdr;
189 switch (*hdr) {
195 *nlen = hdr - key;
196 *v = hdr;
[all...]
/httpd/modules/arch/win32/
H A Dmod_win32.c495 IMAGE_DOS_HEADER *hdr = (IMAGE_DOS_HEADER*)buffer; local
496 if (hdr->e_magic == IMAGE_DOS_SIGNATURE) {
497 if (hdr->e_lfarlc < 0x40) {
/httpd/modules/dav/main/
H A Dprops.c576 apr_text_header hdr = { 0 }; local
593 apr_text_append(propdb->p, &hdr,
630 xi, &hdr,
641 dav_output_prop_name(propdb->p, &name, xi, &hdr);
659 dav_run_insert_all_liveprops(propdb->r, propdb->resource, what, &hdr);
665 what, &hdr, &unused_inserted);
668 what, &hdr, &unused_inserted);
676 what, &hdr, &unused_inserted);
683 what, &hdr, &unused_inserted);
689 apr_text_append(propdb->p, &hdr,
[all...]
H A Dmod_dav.c1930 apr_text_header hdr = { 0 }; local
1937 apr_text_append(ctx->w.pool, &hdr,
1943 apr_text_append(ctx->w.pool, &hdr,
1947 apr_text_append(ctx->w.pool, &hdr,
1952 ctx->propstat_404 = hdr.first;
2160 apr_text_header hdr = { 0 }; local
2170 apr_text_append(p, &hdr,
2173 apr_text_append(p, &hdr, apr_xml_empty_elem(p, ctx->prop));
2174 apr_text_append(p, &hdr, "</D:prop>" DEBUG_CR);
2203 apr_text_append(p, &hdr,
2220 apr_text_header hdr = { 0 }; local
[all...]
/httpd/modules/metadata/
H A Dmod_headers.c142 header_entry *hdr; member in struct:__anon255
148 header_entry *hdr; member in struct:__anon256
186 static const char *unwrap_header(apr_pool_t *p, const char *hdr) argument
188 if (ap_strchr_c(hdr, APR_ASCII_LF) || ap_strchr_c(hdr, APR_ASCII_CR)) {
191 hdr = ptr = apr_pstrdup(p, hdr);
198 return hdr;
391 static char *parse_format_string(cmd_parms *cmd, header_entry *hdr, const char *s) argument
397 if (hdr
428 header_inout_cmd(cmd_parms *cmd, void *indirconf, const char *action, const char *hdr, const char *value, const char *subs, const char *envclause) argument
567 const char *hdr; local
604 process_tags(header_entry *hdr, request_rec *r) argument
634 process_regexp(header_entry *hdr, const char *value, request_rec *r) argument
708 header_entry *hdr = &((header_entry *) (fixup->elts))[i]; local
[all...]
/httpd/modules/mappers/
H A Dmod_negotiation.c880 static void strip_paren_comments(char *hdr) argument
885 while (*hdr) {
886 if (*hdr == '"') {
887 hdr = strchr(hdr, '"');
888 if (hdr == NULL) {
891 ++hdr;
893 else if (*hdr == '(') {
894 while (*hdr && *hdr !
[all...]
/httpd/modules/proxy/
H A Dmod_proxy.c582 apr_array_header_t *hdr)
585 apr_array_header_t *ret = apr_array_make(r->pool, hdr->nelts,
587 struct proxy_alias *old = (struct proxy_alias *) hdr->elts;
589 for (i = 0; i < hdr->nelts; ++i) {
581 proxy_vars(request_rec *r, apr_array_header_t *hdr) argument

Completed in 52 milliseconds