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

  /external/libcxx/src/
random.cpp 31 random_device::random_device(const string&) function in class:random_device
35 random_device::~random_device()
40 random_device::operator()()
45 __throw_system_error(err, "random_device rand_s failed.");
49 random_device::random_device(const string& __token)
53 __throw_system_error(errno, ("random_device failed to open " + __token).c_str());
56 random_device::~random_device(
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
random.cpp 31 random_device::random_device(const string&) function in class:random_device
35 random_device::~random_device()
40 random_device::operator()()
45 __throw_system_error(err, "random_device rand_s failed.");
49 random_device::random_device(const string& __token)
53 __throw_system_error(errno, ("random_device failed to open " + __token).c_str());
56 random_device::~random_device(
    [all...]
  /bionic/libc/dns/resolv/
res_init.c 623 int random_device = open("/dev/urandom", O_RDONLY | O_CLOEXEC); local
624 if (random_device < 0) {
630 int retval = read(random_device, random_value, sizeof(u_int));
633 close(random_device);
640 close(random_device);

Completed in 704 milliseconds