Home
last modified time | relevance | path

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

/PHP-7.0/sapi/cgi/
H A Dcgi_main.c477 int tmp_read_bytes; in sapi_cgi_read_post() local
490 tmp_read_bytes = read(STDIN_FILENO, buffer + read_bytes, to_read); in sapi_cgi_read_post()
492 tmp_read_bytes = read(STDIN_FILENO, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
494 if (tmp_read_bytes <= 0) { in sapi_cgi_read_post()
497 read_bytes += tmp_read_bytes; in sapi_cgi_read_post()
505 int tmp_read_bytes; in sapi_fcgi_read_post() local
516 tmp_read_bytes = fcgi_read(request, buffer + read_bytes, to_read); in sapi_fcgi_read_post()
517 if (tmp_read_bytes <= 0) { in sapi_fcgi_read_post()
520 read_bytes += tmp_read_bytes; in sapi_fcgi_read_post()
/PHP-7.0/sapi/fpm/fpm/
H A Dfpm_main.c476 int tmp_read_bytes; in sapi_cgi_read_post() local
500 tmp_read_bytes = fcgi_read(request, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
502 tmp_read_bytes = read(request_body_fd, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
504 if (tmp_read_bytes <= 0) { in sapi_cgi_read_post()
507 read_bytes += tmp_read_bytes; in sapi_cgi_read_post()

Completed in 66 milliseconds