Lines Matching refs:buffer
361 extern int getentropy(void *buffer, size_t length) __attribute__((weak)); in syscall_random()
378 int (*f)(void *buffer, size_t length); in syscall_random()
638 unsigned char *buffer; in ossl_pool_acquire_entropy()
645 buffer = ossl_rand_pool_add_begin(pool, bytes_needed); in ossl_pool_acquire_entropy()
646 bytes = syscall_random(buffer, bytes_needed); in ossl_pool_acquire_entropy()
670 unsigned char *buffer; in ossl_pool_acquire_entropy()
685 buffer = ossl_rand_pool_add_begin(pool, bytes_needed); in ossl_pool_acquire_entropy()
686 bytes = read(fd, buffer, bytes_needed); in ossl_pool_acquire_entropy()
723 unsigned char *buffer; in ossl_pool_acquire_entropy()
731 buffer = ossl_rand_pool_add_begin(pool, bytes_needed); in ossl_pool_acquire_entropy()
733 buffer, (int)bytes_needed); in ossl_pool_acquire_entropy()