Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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
/llvm-project-15.0.7/libcxx/include/
H A D__mutex_base204 __throw_system_error(EPERM, "unique_lock::lock: references null mutex");
206 __throw_system_error(EDEADLK, "unique_lock::lock: already locked");
216 __throw_system_error(EPERM, "unique_lock::try_lock: references null mutex");
218 __throw_system_error(EDEADLK, "unique_lock::try_lock: already locked");
229 __throw_system_error(EPERM, "unique_lock::try_lock_for: references null mutex");
231 __throw_system_error(EDEADLK, "unique_lock::try_lock_for: already locked");
242 __throw_system_error(EPERM, "unique_lock::try_lock_until: references null mutex");
244 __throw_system_error(EDEADLK, "unique_lock::try_lock_until: already locked");
254 __throw_system_error(EPERM, "unique_lock::unlock: not locked");
483 __throw_system_error(EPERM,
[all …]
H A Dshared_mutex441 __throw_system_error(EPERM, "shared_lock::lock: references null mutex");
443 __throw_system_error(EDEADLK, "shared_lock::lock: already locked");
453 __throw_system_error(EPERM, "shared_lock::try_lock: references null mutex");
455 __throw_system_error(EDEADLK, "shared_lock::try_lock: already locked");
466 __throw_system_error(EPERM, "shared_lock::try_lock_for: references null mutex");
468 __throw_system_error(EDEADLK, "shared_lock::try_lock_for: already locked");
479 __throw_system_error(EPERM, "shared_lock::try_lock_until: references null mutex");
481 __throw_system_error(EDEADLK, "shared_lock::try_lock_until: already locked");
491 __throw_system_error(EPERM, "shared_lock::unlock: not locked");
H A Dthread186 __throw_system_error(__ec, "__thread_specific_ptr construction failed");
315 __throw_system_error(__ec, "thread constructor failed");
350 __throw_system_error(__ec, "thread constructor failed");
H A Dsystem_error485 void __throw_system_error(int __ev, const char* __what_arg);
/llvm-project-15.0.7/libcxx/src/filesystem/
H A Doperations.cpp660 __throw_system_error(errno, "clock_gettime(CLOCK_REALTIME) failed"); in now()