Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/libcxx/src/
H A Drandom.cpp49 __throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); in random_device()
63 __throw_system_error(errno, "random_device getentropy failed"); in operator ()()
72 __throw_system_error(ENOENT, ("random device not supported " + __token).c_str());
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());
[all …]
H A Dcondition_variable.cpp42 __throw_system_error(EPERM, in wait()
46 __throw_system_error(ec, "condition_variable wait failed"); in wait()
55 __throw_system_error(EPERM, in __do_timed_wait()
76 __throw_system_error(ec, "condition_variable timed_wait failed"); in __do_timed_wait()
H A Dmutex.cpp35 __throw_system_error(ec, "mutex lock failed"); in lock()
58 __throw_system_error(ec, "recursive_mutex constructor failed"); in recursive_mutex()
73 __throw_system_error(ec, "recursive_mutex lock failed"); in lock()
152 __throw_system_error(EAGAIN, "recursive_timed_mutex lock limit reached"); in lock()
H A Dchrono.cpp93 __throw_system_error(errno, "clock_gettime(CLOCK_REALTIME) failed");
200 __throw_system_error(errno, "clock_gettime(CLOCK_MONOTONIC_RAW) failed"); in __libcpp_steady_clock_now()
237 __throw_system_error(errno, "failed to obtain time of day"); in __libcpp_steady_clock_now()
247 __throw_system_error(errno, "clock_gettime(CLOCK_MONOTONIC) failed"); in __libcpp_steady_clock_now()
H A Dthread.cpp54 __throw_system_error(ec, "thread::join failed"); in join()
69 __throw_system_error(ec, "thread::detach failed"); in detach()
H A Dsystem_error.cpp284 __throw_system_error(int ev, const char* what_arg) in __throw_system_error() function
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A D__mutex_base202 __throw_system_error(EPERM, "unique_lock::lock: references null mutex");
204 __throw_system_error(EDEADLK, "unique_lock::lock: already locked");
214 __throw_system_error(EPERM, "unique_lock::try_lock: references null mutex");
216 __throw_system_error(EDEADLK, "unique_lock::try_lock: already locked");
227 __throw_system_error(EPERM, "unique_lock::try_lock_for: references null mutex");
229 __throw_system_error(EDEADLK, "unique_lock::try_lock_for: already locked");
240 __throw_system_error(EPERM, "unique_lock::try_lock_until: references null mutex");
242 __throw_system_error(EDEADLK, "unique_lock::try_lock_until: already locked");
252 __throw_system_error(EPERM, "unique_lock::unlock: not locked");
489 __throw_system_error(EPERM,
[all …]
H A Dshared_mutex440 __throw_system_error(EPERM, "shared_lock::lock: references null mutex");
442 __throw_system_error(EDEADLK, "shared_lock::lock: already locked");
452 __throw_system_error(EPERM, "shared_lock::try_lock: references null mutex");
454 __throw_system_error(EDEADLK, "shared_lock::try_lock: already locked");
465 __throw_system_error(EPERM, "shared_lock::try_lock_for: references null mutex");
467 __throw_system_error(EDEADLK, "shared_lock::try_lock_for: already locked");
478 __throw_system_error(EPERM, "shared_lock::try_lock_until: references null mutex");
480 __throw_system_error(EDEADLK, "shared_lock::try_lock_until: already locked");
490 __throw_system_error(EPERM, "shared_lock::unlock: not locked");
H A Dthread178 __throw_system_error(__ec, "__thread_specific_ptr construction failed");
311 __throw_system_error(__ec, "thread constructor failed");
346 __throw_system_error(__ec, "thread constructor failed");
H A Dsystem_error484 void __throw_system_error(int ev, const char* what_arg);
/freebsd-13.1/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp657 __throw_system_error(errno, "clock_gettime(CLOCK_REALTIME) failed"); in now()