Home | History | Annotate | Download | only in src

Lines Matching defs:random_device

31 random_device::random_device(const string&)
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()
62 random_device::operator()()
71 __throw_system_error(ENODATA, "random_device got EOF");
75 __throw_system_error(errno, "random_device got an unexpected error");
86 random_device::entropy() const _NOEXCEPT