Home
last modified time | relevance | path

Searched refs:count_bytes (Results 1 – 6 of 6) sorted by relevance

/php-src/sapi/apache2handler/
H A Dsapi_apache2.c179 php_apache_sapi_read_post(char *buf, size_t count_bytes) in php_apache_sapi_read_post() argument
189 len = count_bytes; in php_apache_sapi_read_post()
201 if (tlen == count_bytes || !len) { in php_apache_sapi_read_post()
205 len = count_bytes - tlen; in php_apache_sapi_read_post()
/php-src/sapi/cgi/
H A Dcgi_main.c475 static size_t sapi_cgi_read_post(char *buffer, size_t count_bytes) in sapi_cgi_read_post() argument
485 count_bytes = MIN(count_bytes, remaining_bytes); in sapi_cgi_read_post()
486 while (read_bytes < count_bytes) { in sapi_cgi_read_post()
488 size_t diff = count_bytes - read_bytes; in sapi_cgi_read_post()
493 tmp_read_bytes = read(STDIN_FILENO, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
503 static size_t sapi_fcgi_read_post(char *buffer, size_t count_bytes) in sapi_fcgi_read_post() argument
510 if (remaining < count_bytes) { in sapi_fcgi_read_post()
511 count_bytes = remaining; in sapi_fcgi_read_post()
513 while (read_bytes < count_bytes) { in sapi_fcgi_read_post()
514 size_t diff = count_bytes - read_bytes; in sapi_fcgi_read_post()
/php-src/sapi/fpm/fpm/
H A Dfpm_main.c433 static size_t sapi_cgi_read_post(char *buffer, size_t count_bytes) /* {{{ */ in sapi_cgi_read_post() argument
439 if (remaining < count_bytes) { in sapi_cgi_read_post()
440 count_bytes = remaining; in sapi_cgi_read_post()
442 while (read_bytes < count_bytes) { in sapi_cgi_read_post()
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()
/php-src/main/
H A DSAPI.h258 size_t (*read_post)(char *buffer, size_t count_bytes);
/php-src/sapi/litespeed/
H A Dlsapi_main.c287 static size_t sapi_lsapi_read_post(char *buffer, size_t count_bytes) in sapi_lsapi_read_post() argument
290 ssize_t rv = LSAPI_ReadReqBody(buffer, (unsigned long long)count_bytes); in sapi_lsapi_read_post()
/php-src/sapi/cli/
H A Dphp_cli_server.c598 static size_t sapi_cli_server_read_post(char *buf, size_t count_bytes) /* {{{ */ in sapi_cli_server_read_post() argument
603 …size_t nbytes_copied = MIN(client->post_read_offset + count_bytes, content_len) - client->post_rea… in sapi_cli_server_read_post()

Completed in 41 milliseconds