Home
last modified time | relevance | path

Searched refs:__throw_system_error (Results 1 – 11 of 11) sorted by relevance

/openbsd-src/gnu/llvm/libcxx/src/
H A Drandom.cpp51 __throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); in random_device()
65 __throw_system_error(errno, "random_device getentropy failed"); in operator ()()
91 __throw_system_error(errno, ("random_device failed to open " + __token).c_str());
109 __throw_system_error(ENODATA, "random_device got EOF");
113 __throw_system_error(errno, "random_device got an unexpected error");
127 __throw_system_error(ENOENT, ("random device not supported " + __token).c_str());
130 __throw_system_error(error, ("random device failed to open " + __token).c_str());
145 __throw_system_error(error, "random_device failed getting bytes");
156 __throw_system_error(ENOENT, ("random device not supported " + __token).c_str());
169 __throw_system_error(err, "random_device rand_s failed.");
[all …]
H A Dcondition_variable.cpp44 __throw_system_error(EPERM, in wait()
48 __throw_system_error(ec, "condition_variable wait failed"); in wait()
57 __throw_system_error(EPERM, in __do_timed_wait()
78 __throw_system_error(ec, "condition_variable timed_wait failed"); in __do_timed_wait()
H A Dmutex.cpp40 __throw_system_error(ec, "mutex lock failed"); in lock()
63 __throw_system_error(ec, "recursive_mutex constructor failed"); in recursive_mutex()
78 __throw_system_error(ec, "recursive_mutex lock failed"); in lock()
157 __throw_system_error(EAGAIN, "recursive_timed_mutex lock limit reached"); in lock()
H A Dchrono.cpp124 __throw_system_error(errno, "clock_gettime(CLOCK_REALTIME) failed");
231 __throw_system_error(errno, "clock_gettime(CLOCK_MONOTONIC_RAW) failed"); in __libcpp_steady_clock_now()
268 __throw_system_error(errno, "failed to obtain time of day"); in __libcpp_steady_clock_now()
289 __throw_system_error(errno, "clock_gettime(CLOCK_MONOTONIC) failed"); in __libcpp_steady_clock_now()
H A Dthread.cpp55 __throw_system_error(ec, "thread::join failed"); in join()
70 __throw_system_error(ec, "thread::detach failed"); in detach()
H A Dsystem_error.cpp287 __throw_system_error(int ev, const char* what_arg) in __throw_system_error() function
/openbsd-src/gnu/llvm/libcxx/include/
H A D__mutex_base206 __throw_system_error(EPERM, "unique_lock::lock: references null mutex");
208 __throw_system_error(EDEADLK, "unique_lock::lock: already locked");
218 __throw_system_error(EPERM, "unique_lock::try_lock: references null mutex");
220 __throw_system_error(EDEADLK, "unique_lock::try_lock: already locked");
231 __throw_system_error(EPERM, "unique_lock::try_lock_for: references null mutex");
233 __throw_system_error(EDEADLK, "unique_lock::try_lock_for: already locked");
244 __throw_system_error(EPERM, "unique_lock::try_lock_until: references null mutex");
246 __throw_system_error(EDEADLK, "unique_lock::try_lock_until: already locked");
256 __throw_system_error(EPERM, "unique_lock::unlock: not locked");
485 __throw_system_error(EPERM,
[all …]
H A Dshared_mutex442 __throw_system_error(EPERM, "shared_lock::lock: references null mutex");
444 __throw_system_error(EDEADLK, "shared_lock::lock: already locked");
454 __throw_system_error(EPERM, "shared_lock::try_lock: references null mutex");
456 __throw_system_error(EDEADLK, "shared_lock::try_lock: already locked");
467 __throw_system_error(EPERM, "shared_lock::try_lock_for: references null mutex");
469 __throw_system_error(EDEADLK, "shared_lock::try_lock_for: already locked");
480 __throw_system_error(EPERM, "shared_lock::try_lock_until: references null mutex");
482 __throw_system_error(EDEADLK, "shared_lock::try_lock_until: already locked");
492 __throw_system_error(EPERM, "shared_lock::unlock: not locked");
H A Dthread184 __throw_system_error(__ec, "__thread_specific_ptr construction failed");
313 __throw_system_error(__ec, "thread constructor failed");
348 __throw_system_error(__ec, "thread constructor failed");
H A Dsystem_error544 void __throw_system_error(int __ev, const char* __what_arg);
/openbsd-src/gnu/llvm/libcxx/src/filesystem/
H A Doperations.cpp660 __throw_system_error(errno, "clock_gettime(CLOCK_REALTIME) failed"); in now()