Home
last modified time | relevance | path

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

/PHP-7.2/sapi/apache2handler/
H A Dsapi_apache2.c177 php_apache_sapi_read_post(char *buf, size_t count_bytes) in php_apache_sapi_read_post() argument
186 len = count_bytes; in php_apache_sapi_read_post()
198 if (tlen == count_bytes || !len) { in php_apache_sapi_read_post()
202 len = count_bytes - tlen; in php_apache_sapi_read_post()
/PHP-7.2/sapi/cgi/
H A Dcgi_main.c487 static size_t sapi_cgi_read_post(char *buffer, size_t count_bytes) in sapi_cgi_read_post() argument
497 count_bytes = MIN(count_bytes, remaining_bytes); in sapi_cgi_read_post()
498 while (read_bytes < count_bytes) { in sapi_cgi_read_post()
500 size_t diff = count_bytes - read_bytes; in sapi_cgi_read_post()
505 tmp_read_bytes = read(STDIN_FILENO, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
515 static size_t sapi_fcgi_read_post(char *buffer, size_t count_bytes) in sapi_fcgi_read_post() argument
522 if (remaining < count_bytes) { in sapi_fcgi_read_post()
523 count_bytes = remaining; in sapi_fcgi_read_post()
525 while (read_bytes < count_bytes) { in sapi_fcgi_read_post()
526 size_t diff = count_bytes - read_bytes; in sapi_fcgi_read_post()
/PHP-7.2/sapi/fpm/fpm/
H A Dfpm_main.c474 static size_t sapi_cgi_read_post(char *buffer, size_t count_bytes) /* {{{ */ in sapi_cgi_read_post() argument
480 if (remaining < count_bytes) { in sapi_cgi_read_post()
481 count_bytes = remaining; in sapi_cgi_read_post()
483 while (read_bytes < count_bytes) { in sapi_cgi_read_post()
501 tmp_read_bytes = fcgi_read(request, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
503 tmp_read_bytes = read(request_body_fd, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
/PHP-7.2/main/
H A DSAPI.h239 size_t (*read_post)(char *buffer, size_t count_bytes);
/PHP-7.2/sapi/litespeed/
H A Dlsapi_main.c312 static size_t sapi_lsapi_read_post(char *buffer, size_t count_bytes) in sapi_lsapi_read_post() argument
315 ssize_t rv = LSAPI_ReadReqBody(buffer, (unsigned long long)count_bytes); in sapi_lsapi_read_post()
/PHP-7.2/sapi/cli/
H A Dphp_cli_server.c580 static size_t sapi_cli_server_read_post(char *buf, size_t count_bytes) /* {{{ */ in sapi_cli_server_read_post() argument
585 …size_t nbytes_copied = MIN(client->post_read_offset + count_bytes, content_len) - client->post_rea… in sapi_cli_server_read_post()

Completed in 57 milliseconds