Searched refs:__throw_system_error (Results 1 – 12 of 12) sorted by relevance
/external/libcxx/src/ |
D | random.cpp | 43 __throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); in random_device() 62 __throw_system_error(errno, ("random_device failed to open " + __token).c_str()); 80 __throw_system_error(ENODATA, "random_device got EOF"); 84 __throw_system_error(errno, "random_device got an unexpected error"); 98 __throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); 101 __throw_system_error(error, ("random device failed to open " + __token).c_str()); 116 __throw_system_error(error, "random_device failed getting bytes"); 127 __throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); 140 __throw_system_error(err, "random_device rand_s failed.");
|
D | condition_variable.cpp | 41 __throw_system_error(EPERM, in wait() 45 __throw_system_error(ec, "condition_variable wait failed"); in wait() 54 __throw_system_error(EPERM, in __do_timed_wait() 75 __throw_system_error(ec, "condition_variable timed_wait failed"); in __do_timed_wait()
|
D | mutex.cpp | 33 __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()
|
D | chrono.cpp | 98 __throw_system_error(errno, "clock_gettime(CLOCK_REALTIME) failed"); in now() 138 __throw_system_error(errno, "clock_gettime(CLOCK_UPTIME_RAW) failed"); in now() 225 __throw_system_error(errno, "clock_gettime(CLOCK_MONOTONIC) failed"); in now()
|
D | thread.cpp | 59 __throw_system_error(ec, "thread::join failed"); in join() 74 __throw_system_error(ec, "thread::detach failed"); in detach()
|
D | system_error.cpp | 266 __throw_system_error(int ev, const char* what_arg) in __throw_system_error() function
|
/external/libcxx/include/ |
D | __mutex_base | 223 __throw_system_error(EPERM, "unique_lock::lock: references null mutex"); 225 __throw_system_error(EDEADLK, "unique_lock::lock: already locked"); 235 __throw_system_error(EPERM, "unique_lock::try_lock: references null mutex"); 237 __throw_system_error(EDEADLK, "unique_lock::try_lock: already locked"); 248 __throw_system_error(EPERM, "unique_lock::try_lock_for: references null mutex"); 250 __throw_system_error(EDEADLK, "unique_lock::try_lock_for: already locked"); 261 __throw_system_error(EPERM, "unique_lock::try_lock_until: references null mutex"); 263 __throw_system_error(EDEADLK, "unique_lock::try_lock_until: already locked"); 273 __throw_system_error(EPERM, "unique_lock::unlock: not locked");
|
D | shared_mutex | 436 __throw_system_error(EPERM, "shared_lock::lock: references null mutex"); 438 __throw_system_error(EDEADLK, "shared_lock::lock: already locked"); 448 __throw_system_error(EPERM, "shared_lock::try_lock: references null mutex"); 450 __throw_system_error(EDEADLK, "shared_lock::try_lock: already locked"); 461 __throw_system_error(EPERM, "shared_lock::try_lock_for: references null mutex"); 463 __throw_system_error(EDEADLK, "shared_lock::try_lock_for: already locked"); 474 __throw_system_error(EPERM, "shared_lock::try_lock_until: references null mutex"); 476 __throw_system_error(EDEADLK, "shared_lock::try_lock_until: already locked"); 486 __throw_system_error(EPERM, "shared_lock::unlock: not locked");
|
D | thread | 180 __throw_system_error(__ec, "__thread_specific_ptr construction failed"); 369 __throw_system_error(__ec, "thread constructor failed"); 404 __throw_system_error(__ec, "thread constructor failed");
|
D | system_error | 668 void __throw_system_error(int ev, const char* what_arg);
|
/external/valgrind/drd/tests/ |
D | std_thread.cpp | 57 __throw_system_error(int(errc::operation_not_permitted)); in _M_start_thread() 65 __throw_system_error(__e); in _M_start_thread()
|
D | std_thread2.cpp | 62 __throw_system_error(int(errc::operation_not_permitted)); in _M_start_thread() 70 __throw_system_error(__e); in _M_start_thread()
|