Searched refs:tmp_read_bytes (Results 1 – 2 of 2) sorted by relevance
514 int tmp_read_bytes; in sapi_cgi_read_post() local518 tmp_read_bytes = read(STDIN_FILENO, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()519 if (tmp_read_bytes <= 0) { in sapi_cgi_read_post()522 read_bytes += tmp_read_bytes; in sapi_cgi_read_post()530 int tmp_read_bytes; in sapi_fcgi_read_post() local538 tmp_read_bytes = fcgi_read(request, buffer + read_bytes, count_bytes - read_bytes); in sapi_fcgi_read_post()539 if (tmp_read_bytes <= 0) { in sapi_fcgi_read_post()542 read_bytes += tmp_read_bytes; in sapi_fcgi_read_post()
502 int tmp_read_bytes; in sapi_cgi_read_post() local527 tmp_read_bytes = fcgi_read(request, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()529 tmp_read_bytes = read(request_body_fd, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()531 if (tmp_read_bytes <= 0) { in sapi_cgi_read_post()534 read_bytes += tmp_read_bytes; in sapi_cgi_read_post()
Completed in 14 milliseconds