Lines Matching defs:count
191 #define HDR_STRINGS_IDX_CONTENT_LEN_NR 3 /* the byte count, when content-length is used */
1097 int count;
1120 count = LWIP_MIN(hs->buf_len, bytes_left);
1123 count = altcp_sndbuf(pcb);
1124 if (bytes_left < count) {
1125 count = bytes_left;
1130 if (count > max_write_len) {
1131 count = max_write_len;
1135 hs->buf = (char *)mem_malloc((mem_size_t)count);
1137 hs->buf_len = count;
1140 count = count / 2;
1141 } while (count > 100);
1151 LWIP_DEBUGF(HTTPD_DEBUG, ("Trying to read %d bytes.\n", count));
1154 count = fs_read_async(hs->handle, hs->buf, count, http_continue, hs);
1156 count = fs_read(hs->handle, hs->buf, count);
1158 if (count < 0) {
1159 if (count == FS_READ_DELAYED) {
1171 LWIP_DEBUGF(HTTPD_DEBUG, ("Read %d bytes.\n", count));
1172 hs->left = count;
1176 hs->ssi->parse_left = count;
2353 int count;
2356 count = http_cgi_paramcount;
2360 count = extract_uri_parameters(hs, params);
2362 httpd_cgi_handler(file, uri, count, http_cgi_params, http_cgi_param_vals