Home
last modified time | relevance | path

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

/PHP-5.5/sapi/cgi/
H A Dcgi_main.c509 int tmp_read_bytes; in sapi_cgi_read_post() local
513 tmp_read_bytes = read(STDIN_FILENO, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
514 if (tmp_read_bytes <= 0) { in sapi_cgi_read_post()
517 read_bytes += tmp_read_bytes; in sapi_cgi_read_post()
525 int tmp_read_bytes; in sapi_fcgi_read_post() local
530 tmp_read_bytes = fcgi_read(request, buffer + read_bytes, count_bytes - read_bytes); in sapi_fcgi_read_post()
531 if (tmp_read_bytes <= 0) { in sapi_fcgi_read_post()
534 read_bytes += tmp_read_bytes; in sapi_fcgi_read_post()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_main.c500 int tmp_read_bytes; in sapi_cgi_read_post() local
522 tmp_read_bytes = fcgi_read(request, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
524 tmp_read_bytes = read(request_body_fd, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
526 if (tmp_read_bytes <= 0) { in sapi_cgi_read_post()
529 read_bytes += tmp_read_bytes; in sapi_cgi_read_post()

Completed in 13 milliseconds