Searched defs:enc (Results 1 - 3 of 3) sorted by relevance
/httpd/modules/filters/ |
H A D | mod_xml2enc.c | 50 #define HAVE_ENCODING(enc) \ 51 (((enc)!=XML_CHAR_ENCODING_NONE)&&((enc)!=XML_CHAR_ENCODING_ERROR)) 83 static apr_status_t xml2enc_filter(request_rec* r, const char* enc, argument 86 /* set up a ready-initialised ctx to convert to enc, and insert filter */ 91 rv = apr_xlate_open(&convset, enc, "UTF-8", r->pool); 95 rv = apr_xlate_open(&convset, "UTF-8", enc, r->pool); 119 "xml2enc: Charset %s not supported.", enc) ;
|
H A D | mod_proxy_html.c | 886 xmlCharEncoding enc; local 933 (xml2enc_charset(f->r, &enc, &cenc) != APR_SUCCESS)) { 937 enc = XML_CHAR_ENCODING_NONE; 959 4, 0, enc);
|
/httpd/modules/mappers/ |
H A D | mod_negotiation.c | 1927 static int is_identity_encoding(const char *enc) argument 1929 return (!enc || !enc[0] || !strcmp(enc, "7bit") || !strcmp(enc, "8bit") 1930 || !strcmp(enc, "binary")); 1948 const char *enc = variant->content_encoding; local 1958 if (!enc || is_identity_encoding(enc)) 1966 if (!enc || is_identity_encodin 3175 const char *enc = r->content_encoding; local [all...] |
Completed in 147 milliseconds