count_bytes 241 main/SAPI.h size_t (*read_post)(char *buffer, size_t count_bytes); count_bytes 181 sapi/apache2handler/sapi_apache2.c php_apache_sapi_read_post(char *buf, size_t count_bytes) count_bytes 190 sapi/apache2handler/sapi_apache2.c len = count_bytes; count_bytes 202 sapi/apache2handler/sapi_apache2.c if (tlen == count_bytes || !len) { count_bytes 206 sapi/apache2handler/sapi_apache2.c len = count_bytes - tlen; count_bytes 474 sapi/cgi/cgi_main.c static size_t sapi_cgi_read_post(char *buffer, size_t count_bytes) count_bytes 484 sapi/cgi/cgi_main.c count_bytes = MIN(count_bytes, remaining_bytes); count_bytes 485 sapi/cgi/cgi_main.c while (read_bytes < count_bytes) { count_bytes 487 sapi/cgi/cgi_main.c size_t diff = count_bytes - read_bytes; count_bytes 492 sapi/cgi/cgi_main.c tmp_read_bytes = read(STDIN_FILENO, buffer + read_bytes, count_bytes - read_bytes); count_bytes 502 sapi/cgi/cgi_main.c static size_t sapi_fcgi_read_post(char *buffer, size_t count_bytes) count_bytes 509 sapi/cgi/cgi_main.c if (remaining < count_bytes) { count_bytes 510 sapi/cgi/cgi_main.c count_bytes = remaining; count_bytes 512 sapi/cgi/cgi_main.c while (read_bytes < count_bytes) { count_bytes 513 sapi/cgi/cgi_main.c size_t diff = count_bytes - read_bytes; count_bytes 566 sapi/cli/php_cli_server.c static size_t sapi_cli_server_read_post(char *buf, size_t count_bytes) /* {{{ */ count_bytes 571 sapi/cli/php_cli_server.c size_t nbytes_copied = MIN(client->post_read_offset + count_bytes, content_len) - client->post_read_offset; count_bytes 473 sapi/fpm/fpm/fpm_main.c static size_t sapi_cgi_read_post(char *buffer, size_t count_bytes) /* {{{ */ count_bytes 479 sapi/fpm/fpm/fpm_main.c if (remaining < count_bytes) { count_bytes 480 sapi/fpm/fpm/fpm_main.c count_bytes = remaining; count_bytes 482 sapi/fpm/fpm/fpm_main.c while (read_bytes < count_bytes) { count_bytes 500 sapi/fpm/fpm/fpm_main.c tmp_read_bytes = fcgi_read(request, buffer + read_bytes, count_bytes - read_bytes); count_bytes 502 sapi/fpm/fpm/fpm_main.c tmp_read_bytes = read(request_body_fd, buffer + read_bytes, count_bytes - read_bytes); count_bytes 336 sapi/litespeed/lsapi_main.c static size_t sapi_lsapi_read_post(char *buffer, size_t count_bytes) count_bytes 339 sapi/litespeed/lsapi_main.c return LSAPI_ReadReqBody( buffer, (unsigned long long)count_bytes );