Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/
H A Drandom.c102 size_t read_bytes = 0; in php_random_bytes()
107 while (read_bytes < size) { in php_random_bytes()
117 size_t amount_to_read = size - read_bytes; in php_random_bytes()
121 n = getrandom(bytes + read_bytes, amount_to_read, 0); in php_random_bytes()
129 ZEND_ASSERT(read_bytes == 0); in php_random_bytes()
142 __msan_unpoison(bytes + read_bytes, n); in php_random_bytes()
144 read_bytes += (size_t) n; in php_random_bytes()
147 if (read_bytes < size) { in php_random_bytes()
178 for (read_bytes = 0; read_bytes < size; read_bytes += (size_t) n) { in php_random_bytes()
179 n = read(fd, bytes + read_bytes, size - read_bytes); in php_random_bytes()
[all …]
H A Dphp_fopen_wrapper.c85 size_t read_bytes = sapi_read_post_block(buf, count); in php_stream_input_read() local
87 if (read_bytes > 0) { in php_stream_input_read()
89 php_stream_write(input->body, buf, read_bytes); in php_stream_input_read()
/PHP-7.4/main/
H A DSAPI.c236 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() local
[all …]
H A Drfc1867.c658 size_t total_bytes=0, read_bytes=0; in multipart_buffer_read_body() local
660 while((read_bytes = multipart_buffer_read(self, buf, sizeof(buf), NULL))) { in multipart_buffer_read_body()
661 out = erealloc(out, total_bytes + read_bytes + 1); in multipart_buffer_read_body()
662 memcpy(out + total_bytes, buf, read_bytes); in multipart_buffer_read_body()
663 total_bytes += read_bytes; in multipart_buffer_read_body()
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c480 size_t read_bytes = 0; in sapi_cgi_read_post() local
489 while (read_bytes < count_bytes) { in sapi_cgi_read_post()
491 size_t diff = count_bytes - read_bytes; in sapi_cgi_read_post()
496 tmp_read_bytes = read(STDIN_FILENO, buffer + read_bytes, count_bytes - read_bytes); in sapi_cgi_read_post()
501 read_bytes += tmp_read_bytes; in sapi_cgi_read_post()
503 return read_bytes; in sapi_cgi_read_post()
508 size_t read_bytes = 0; in sapi_fcgi_read_post() local
516 while (read_bytes < count_bytes) { in sapi_fcgi_read_post()
517 size_t diff = count_bytes - read_bytes; in sapi_fcgi_read_post()
524 read_bytes += tmp_read_bytes; in sapi_fcgi_read_post()
[all …]
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_main.c435 uint32_t read_bytes = 0; in sapi_cgi_read_post() local
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()
467 read_bytes += tmp_read_bytes; in sapi_cgi_read_post()
469 return read_bytes; in sapi_cgi_read_post()

Completed in 35 milliseconds