Home
last modified time | relevance | path

Searched refs:tmp_read_bytes (Results 1 – 2 of 2) sorted by relevance

/PHP-7.4/sapi/cgi/
H A Dcgi_main.c481 int tmp_read_bytes; in sapi_cgi_read_post() local
494 tmp_read_bytes = read(STDIN_FILENO, buffer + read_bytes, to_read); in sapi_cgi_read_post()
496 tmp_read_bytes = read(STDIN_FILENO, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
498 if (tmp_read_bytes <= 0) { in sapi_cgi_read_post()
501 read_bytes += tmp_read_bytes; in sapi_cgi_read_post()
509 int tmp_read_bytes; in sapi_fcgi_read_post() local
520 tmp_read_bytes = fcgi_read(request, buffer + read_bytes, to_read); in sapi_fcgi_read_post()
521 if (tmp_read_bytes <= 0) { in sapi_fcgi_read_post()
524 read_bytes += tmp_read_bytes; in sapi_fcgi_read_post()
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_main.c436 int tmp_read_bytes; in sapi_cgi_read_post() local
460 tmp_read_bytes = fcgi_read(request, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
462 tmp_read_bytes = read(request_body_fd, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
464 if (tmp_read_bytes <= 0) { in sapi_cgi_read_post()
467 read_bytes += tmp_read_bytes; in sapi_cgi_read_post()

Completed in 16 milliseconds