Searched defs:ct (Results 1 - 7 of 7) sorted by relevance
/httpd/modules/filters/ |
H A D | regexp.c | 396 int ct; local 524 ct = vars->braelist[epint] - bbeg; 527 if (ecmp(bbeg, lp, ct)) { 528 lp += ct; 536 ct = vars->braelist[epint] - bbeg; 539 while (ecmp(bbeg, lp, ct)) 540 lp += ct; 545 lp -= ct;
|
/httpd/server/ |
H A D | apreq_parser_multipart.c | 224 char *ct = apr_pstrdup(pool, content_type); local 226 ct = strchr(ct, ';'); 227 if (ct == NULL) 230 *ct++ = 0; 231 s = apreq_header_attribute(ct, "boundary", 8, 371 const char *cd, *ct, *name, *filename; local 399 ct = apr_table_get(ctx->info, "Content-Type"); 401 if (ct != NULL && strncmp(ct, "multipar [all...] |
H A D | util.c | 2593 const char *ct; local 2606 ct = apr_table_get(r->headers_in, "Content-Type"); 2607 if (!ct || strncasecmp("application/x-www-form-urlencoded", ct, 33)) {
|
/httpd/modules/http/ |
H A D | byterange_filter.c | 85 const char *ct; local 114 if ((ct = apr_table_get(r->headers_out, "Content-Type")) 115 && strncasecmp(ct, "multipart/byteranges", 20) == 0) {
|
H A D | http_protocol.c | 1067 AP_DECLARE(void) ap_set_content_type(request_rec *r, const char *ct) argument 1069 if (!ct) { 1072 else if (!r->content_type || strcmp(r->content_type, ct)) { 1073 r->content_type = ct;
|
H A D | mod_mime.c | 460 const char *ll = l, *ct; local 465 ct = ap_getword_conf(p, &ll); 470 apr_hash_set(mime_type_extensions, ext, APR_HASH_KEY_STRING, ct);
|
/httpd/modules/cache/ |
H A D | mod_cache.c | 667 const char *ct = apr_table_get(cache->handle->resp_hdrs, "Content-Type"); local 668 if (ct) { 669 ap_set_content_type(r, ct);
|
Completed in 48 milliseconds