Searched refs:read_bytes (Results 1 – 6 of 6) sorted by relevance
/PHP-8.3/ext/random/ |
H A D | csprng.c | 99 size_t read_bytes = 0; in php_random_bytes() 106 while (read_bytes < size) { in php_random_bytes() 115 size_t amount_to_read = size - read_bytes; in php_random_bytes() 130 ZEND_ASSERT(read_bytes == 0); in php_random_bytes() 143 __msan_unpoison(bytes + read_bytes, n); in php_random_bytes() 145 read_bytes += (size_t) n; in php_random_bytes() 148 if (read_bytes < size) { in php_random_bytes() 188 read_bytes = 0; in php_random_bytes() 189 while (read_bytes < size) { in php_random_bytes() 191 ssize_t n = read(fd, bytes + read_bytes, size - read_bytes); in php_random_bytes() [all …]
|
/PHP-8.3/main/ |
H A D | SAPI.c | 236 size_t read_bytes; in sapi_read_post_block() local 244 if (read_bytes > 0) { in sapi_read_post_block() 246 SG(read_post_bytes) += read_bytes; in sapi_read_post_block() 248 if (read_bytes < buflen) { in sapi_read_post_block() 253 return read_bytes; in sapi_read_post_block() 268 size_t read_bytes; in SAPI_POST_READER_FUNC() local 275 if (read_bytes > 0) { in SAPI_POST_READER_FUNC() 276 if (php_stream_write(SG(request_info).request_body, buffer, read_bytes) != read_bytes) { in SAPI_POST_READER_FUNC() 289 if (read_bytes < SAPI_POST_BLOCK_SIZE) { in SAPI_POST_READER_FUNC() 503 size_t read_bytes; in sapi_deactivate_module() local [all …]
|
H A D | rfc1867.c | 628 size_t total_bytes=0, read_bytes=0; in multipart_buffer_read_body() local 630 while((read_bytes = multipart_buffer_read(self, buf, sizeof(buf), NULL))) { in multipart_buffer_read_body() 631 out = erealloc(out, total_bytes + read_bytes + 1); in multipart_buffer_read_body() 632 memcpy(out + total_bytes, buf, read_bytes); in multipart_buffer_read_body() 633 total_bytes += read_bytes; in multipart_buffer_read_body()
|
/PHP-8.3/sapi/cgi/ |
H A D | cgi_main.c | 477 size_t read_bytes = 0; in sapi_cgi_read_post() local 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() 498 read_bytes += tmp_read_bytes; in sapi_cgi_read_post() 500 return read_bytes; in sapi_cgi_read_post() 505 size_t read_bytes = 0; in sapi_fcgi_read_post() local 513 while (read_bytes < count_bytes) { in sapi_fcgi_read_post() 514 size_t diff = count_bytes - read_bytes; in sapi_fcgi_read_post() 521 read_bytes += tmp_read_bytes; in sapi_fcgi_read_post() [all …]
|
/PHP-8.3/ext/standard/ |
H A D | php_fopen_wrapper.c | 83 size_t read_bytes = sapi_read_post_block(buf, count); in php_stream_input_read() local 85 if (read_bytes > 0) { in php_stream_input_read() 87 php_stream_write(input->body, buf, read_bytes); in php_stream_input_read()
|
/PHP-8.3/sapi/fpm/fpm/ |
H A D | fpm_main.c | 432 uint32_t read_bytes = 0; in sapi_cgi_read_post() local 439 while (read_bytes < count_bytes) { in sapi_cgi_read_post() 457 tmp_read_bytes = fcgi_read(request, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post() 459 tmp_read_bytes = read(request_body_fd, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post() 464 read_bytes += tmp_read_bytes; in sapi_cgi_read_post() 466 return read_bytes; in sapi_cgi_read_post()
|
Completed in 29 milliseconds