Lines Matching refs:buffer
353 extern int getentropy(void *buffer, size_t length) __attribute__((weak)); in syscall_random()
370 int (*f)(void *buffer, size_t length); in syscall_random()
634 unsigned char *buffer; in ossl_pool_acquire_entropy()
641 buffer = ossl_rand_pool_add_begin(pool, bytes_needed); in ossl_pool_acquire_entropy()
642 bytes = syscall_random(buffer, bytes_needed); in ossl_pool_acquire_entropy()
660 unsigned char *buffer; in ossl_pool_acquire_entropy()
675 buffer = ossl_rand_pool_add_begin(pool, bytes_needed); in ossl_pool_acquire_entropy()
676 bytes = read(fd, buffer, bytes_needed); in ossl_pool_acquire_entropy()
713 unsigned char *buffer; in ossl_pool_acquire_entropy()
721 buffer = ossl_rand_pool_add_begin(pool, bytes_needed); in ossl_pool_acquire_entropy()
723 buffer, (int)bytes_needed); in ossl_pool_acquire_entropy()