HomeSort by relevance Sort by last modified time
    Searched defs:random_device (Results 1 - 2 of 2) sorted by null

  /ndk/sources/cxx-stl/llvm-libc++/src/
random.cpp 22 random_device::random_device(const string& __token) function in class:random_device
26 __throw_system_error(errno, ("random_device failed to open " + __token).c_str());
29 random_device::~random_device()
35 random_device::operator()()
43 random_device::entropy() const _NOEXCEPT
  /bionic/libc/netbsd/resolv/
res_init.c 611 int random_device = open("/dev/urandom", O_RDONLY); local
612 if (random_device < 0) {
619 int retval = read(random_device, random_value, sizeof(u_int));
622 close(random_device);
629 close(random_device);

Completed in 170 milliseconds