Lines Matching defs:clength
353 http_funopen(conn_t *conn, int chunked, int keep_alive, off_t clength)
364 io->contentlength = clength;
878 off_t offset, clength, length, size;
909 clength = -1;
1091 http_parse_length(p, &clength);
1188 if (clength != -1 && length != -1 && clength != length) {
1192 if (clength == -1)
1193 clength = length;
1194 if (clength != -1)
1195 length = offset + clength;
1217 URL->length = clength;
1219 if (clength == -1 && !chunked)
1232 if ((f = http_funopen(conn, chunked, keep_alive, clength)) == NULL) {