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

/httpd/modules/cache/
H A Dmod_cache.c817 const char *cc_out, *cl, *pragma; local
1247 cl = apr_table_get(r->err_headers_out, "Content-Length");
1248 if (cl == NULL) {
1249 cl = apr_table_get(r->headers_out, "Content-Length");
1251 if (cl) {
1253 if (apr_strtoff(&size, cl, &errp, 10) || *errp || size < 0) {
1254 cl = NULL; /* parse error, see next 'if' block */
1258 if (!cl) {
H A Dmod_cache_disk.c1296 apr_int64_t cl = apr_atoi64(cl_header); local
1297 if ((errno == 0) && (dobj->file_size != cl)) {
H A Dmod_cache_socache.c1079 apr_int64_t cl = apr_atoi64(cl_header); local
1080 if ((errno == 0) && (sobj->file_size != cl)) {
/httpd/modules/generators/
H A Dmod_autoindex.c250 char *cl = strchr(iconbak, ')'); local
252 if (cl == NULL) {
256 *cl = '\0'; /* Lose closing paren */
/httpd/modules/proxy/
H A Dmod_proxy.c1125 apr_off_t cl; local
1136 apr_strtoff(&cl, cl_a, &end, 10);
1143 if (cl > 0) {
/httpd/support/
H A Dab.c1580 char *cl; local
1581 cl = strstr(c->cbuff, "Content-Length:");
1583 if (!cl)
1584 cl = strstr(c->cbuff, "Content-length:");
1585 if (cl) {
1588 c->length = method != HEAD ? atoi(cl + 16) : 0;
1591 if (!cl) {
/httpd/server/
H A Dutil.c2492 apr_off_t cl; local
2501 && (apr_strtoff(&cl, cls, &estr, 10) == APR_SUCCESS)
2503 && (cl > 0) )

Completed in 72 milliseconds