Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/libc++/src/
H A Drandom.cpp45 __throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); in random_device()
59 __throw_system_error(errno, "random_device getentropy failed"); in operator ()()
68 __throw_system_error(ENOENT, ("random device not supported " + __token).c_str());
87 __throw_system_error(errno, ("random_device failed to open " + __token).c_str());
105 __throw_system_error(ENODATA, "random_device got EOF");
109 __throw_system_error(errno, "random_device got an unexpected error");
123 __throw_system_error(ENOENT, ("random device not supported " + __token).c_str());
126 __throw_system_error(error, ("random device failed to open " + __token).c_str());
141 __throw_system_error(error, "random_device failed getting bytes");
152 __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.cpp33 __throw_system_error(ec, "mutex lock failed"); in lock()
56 __throw_system_error(ec, "recursive_mutex constructor failed"); in recursive_mutex()
71 __throw_system_error(ec, "recursive_mutex lock failed"); in lock()
150 __throw_system_error(EAGAIN, "recursive_timed_mutex lock limit reached"); in lock()
H A Dchrono.cpp81 __throw_system_error(errno, "clock_gettime(CLOCK_REALTIME) failed"); in now()
121 __throw_system_error(errno, "clock_gettime(CLOCK_UPTIME_RAW) failed"); in now()
208 __throw_system_error(errno, "clock_gettime(CLOCK_MONOTONIC) failed"); in now()
H A Dthread.cpp59 __throw_system_error(ec, "thread::join failed"); in join()
74 __throw_system_error(ec, "thread::detach failed"); in detach()
H A Dsystem_error.cpp285 __throw_system_error(int ev, const char* what_arg) in __throw_system_error() function
/freebsd-12.1/contrib/libc++/include/
H A D__mutex_base219 __throw_system_error(EPERM, "unique_lock::lock: references null mutex");
221 __throw_system_error(EDEADLK, "unique_lock::lock: already locked");
231 __throw_system_error(EPERM, "unique_lock::try_lock: references null mutex");
233 __throw_system_error(EDEADLK, "unique_lock::try_lock: already locked");
244 __throw_system_error(EPERM, "unique_lock::try_lock_for: references null mutex");
246 __throw_system_error(EDEADLK, "unique_lock::try_lock_for: already locked");
257 __throw_system_error(EPERM, "unique_lock::try_lock_until: references null mutex");
259 __throw_system_error(EDEADLK, "unique_lock::try_lock_until: already locked");
269 __throw_system_error(EPERM, "unique_lock::unlock: not locked");
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 Dthread183 __throw_system_error(__ec, "__thread_specific_ptr construction failed");
308 __throw_system_error(__ec, "thread constructor failed");
354 __throw_system_error(__ec, "thread constructor failed");
H A Dsystem_error483 void __throw_system_error(int ev, const char* what_arg);
/freebsd-12.1/contrib/libc++/src/filesystem/
H A Doperations.cpp494 __throw_system_error(errno, "clock_gettime(CLOCK_REALTIME) failed"); in now()