/external/libcxx/src/ |
D | system_error.cpp | 147 system_error::__init(const error_code& ec, string what_arg) in __init() 158 system_error::system_error(error_code ec, const string& what_arg) in system_error() function in system_error 164 system_error::system_error(error_code ec, const char* what_arg) in system_error() function in system_error 170 system_error::system_error(error_code ec) in system_error() function in system_error 176 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) in system_error() function in system_error 182 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) in system_error() function in system_error 188 system_error::system_error(int ev, const error_category& ecat) in system_error() function in system_error 194 system_error::~system_error() _NOEXCEPT in ~system_error() 202 throw system_error(error_code(ev, system_category()), what_arg); in __throw_system_error()
|
D | thread.cpp | 47 throw system_error(error_code(ec, system_category()), "thread::join failed"); in join() 66 throw system_error(error_code(ec, system_category()), "thread::detach failed"); in detach()
|
/external/libcxx/include/experimental/ |
D | system_error | 2 //===-------------------------- system_error ------------------------------===// 15 experimental/system_error synopsis 19 #include <system_error> 41 #include <system_error>
|
/external/libcxx/include/ |
D | system_error | 2 //===---------------------------- system_error ----------------------------===// 15 system_error synopsis 102 class system_error 106 system_error(error_code ec, const string& what_arg); 107 system_error(error_code ec, const char* what_arg); 108 system_error(error_code ec); 109 system_error(int ev, const error_category& ecat, const string& what_arg); 110 system_error(int ev, const error_category& ecat, const char* what_arg); 111 system_error(int ev, const error_category& ecat); 616 // system_error [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/ |
D | system_error.hpp | 24 typedef std::system_error system_error; typedef
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
D | throw_error.ipp | 18 #include "asio/system_error.hpp" 27 asio::system_error e(err); 35 asio::system_error e(err, location);
|
/external/clang/test/SemaCXX/ |
D | PR9461.cpp | 31 struct system_error:runtime_error{ // expected-note {{to match}} struct 32 system_error():time_error("" // expected-error 3 {{expected}} expected-note {{to match}}
|
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/ |
D | unlock.pass.cpp | 42 catch (std::system_error& e) in main() 52 catch (std::system_error& e) in main()
|
D | try_lock.pass.cpp | 46 catch (std::system_error& e) in main() 60 catch (std::system_error& e) in main()
|
D | try_lock_for.pass.cpp | 51 catch (std::system_error& e) in main() 65 catch (std::system_error& e) in main()
|
D | try_lock_until.pass.cpp | 51 catch (std::system_error& e) in main() 65 catch (std::system_error& e) in main()
|
D | lock.pass.cpp | 45 catch (std::system_error& e) in f() 56 catch (std::system_error& e) in f()
|
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/ |
D | unlock.pass.cpp | 47 catch (std::system_error& e) in main() 57 catch (std::system_error& e) in main()
|
D | try_lock.pass.cpp | 51 catch (std::system_error& e) in main() 65 catch (std::system_error& e) in main()
|
D | try_lock_for.pass.cpp | 56 catch (std::system_error& e) in main() 70 catch (std::system_error& e) in main()
|
D | try_lock_until.pass.cpp | 56 catch (std::system_error& e) in main() 70 catch (std::system_error& e) in main()
|
D | lock.pass.cpp | 48 catch (std::system_error& e) in f() 59 catch (std::system_error& e) in f()
|
/external/libcxx/test/std/numerics/rand/rand.device/ |
D | eval.pass.cpp | 32 catch (const std::system_error& e) in main()
|
/external/libcxx/test/std/diagnostics/syserr/syserr.syserr/syserr.syserr.members/ |
D | ctor_int_error_category.pass.cpp | 24 std::system_error se(static_cast<int>(std::errc::not_a_directory), in main()
|
D | ctor_error_code.pass.cpp | 24 std::system_error se(static_cast<int>(std::errc::not_a_directory), in main()
|
D | ctor_error_code_string.pass.cpp | 25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg); in main()
|
D | ctor_int_error_category_string.pass.cpp | 25 std::system_error se(static_cast<int>(std::errc::not_a_directory), in main()
|
D | ctor_error_code_const_char_pointer.pass.cpp | 25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg.c_str()); in main()
|
D | ctor_int_error_category_const_char_pointer.pass.cpp | 25 std::system_error se(static_cast<int>(std::errc::not_a_directory), in main()
|
/external/valgrind/drd/tests/ |
D | std_thread.cpp | 53 throw system_error(make_error_code(errc::operation_not_permitted), in _M_start_thread()
|