Home
last modified time | relevance | path

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

/PHP-8.1/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-8.1/sapi/cgi/
H A Dcgi_main.c474 static size_t sapi_cgi_read_post(char *buffer, size_t count_bytes) in sapi_cgi_read_post() argument
484 count_bytes = MIN(count_bytes, remaining_bytes); in sapi_cgi_read_post()
485 while (read_bytes < count_bytes) { in sapi_cgi_read_post()
487 size_t diff = count_bytes - read_bytes; in sapi_cgi_read_post()
492 tmp_read_bytes = read(STDIN_FILENO, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
502 static size_t sapi_fcgi_read_post(char *buffer, size_t count_bytes) in sapi_fcgi_read_post() argument
509 if (remaining < count_bytes) { in sapi_fcgi_read_post()
510 count_bytes = remaining; in sapi_fcgi_read_post()
512 while (read_bytes < count_bytes) { in sapi_fcgi_read_post()
513 size_t diff = count_bytes - read_bytes; in sapi_fcgi_read_post()
/PHP-8.1/sapi/fpm/fpm/
H A Dfpm_main.c428 static size_t sapi_cgi_read_post(char *buffer, size_t count_bytes) /* {{{ */ in sapi_cgi_read_post() argument
434 if (remaining < count_bytes) { in sapi_cgi_read_post()
435 count_bytes = remaining; in sapi_cgi_read_post()
437 while (read_bytes < count_bytes) { in sapi_cgi_read_post()
455 tmp_read_bytes = fcgi_read(request, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
457 tmp_read_bytes = read(request_body_fd, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
/PHP-8.1/main/
H A DSAPI.h236 size_t (*read_post)(char *buffer, size_t count_bytes);
/PHP-8.1/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-8.1/sapi/cli/
H A Dphp_cli_server.c599 static size_t sapi_cli_server_read_post(char *buf, size_t count_bytes) /* {{{ */ in sapi_cli_server_read_post() argument
604 …size_t nbytes_copied = MIN(client->post_read_offset + count_bytes, content_len) - client->post_rea… in sapi_cli_server_read_post()

Completed in 51 milliseconds