/external/libcxx/src/ |
D | system_error.cpp | 214 system_error::__init(const error_code& ec, string what_arg) in __init() 225 system_error::system_error(error_code ec, const string& what_arg) in system_error() function in system_error 231 system_error::system_error(error_code ec, const char* what_arg) in system_error() function in system_error 237 system_error::system_error(error_code ec) in system_error() function in system_error 243 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) in system_error() function in system_error 249 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) in system_error() function in system_error 255 system_error::system_error(int ev, const error_category& ecat) in system_error() function in system_error 261 system_error::~system_error() _NOEXCEPT in ~system_error() 269 throw system_error(error_code(ev, system_category()), what_arg); in __throw_system_error()
|
/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 108 class system_error 112 system_error(error_code ec, const string& what_arg); 113 system_error(error_code ec, const char* what_arg); 114 system_error(error_code ec); 115 system_error(int ev, const error_category& ecat, const string& what_arg); 116 system_error(int ev, const error_category& ecat, const char* what_arg); 117 system_error(int ev, const error_category& ecat); 645 // system_error [all …]
|
/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/parameter-framework/asio-1.10.6/include/asio/ |
D | system_error.hpp | 24 typedef std::system_error system_error; typedef
|
/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 | 45 catch (std::system_error& e) in main() 57 catch (std::system_error& e) in main()
|
D | try_lock.pass.cpp | 49 catch (std::system_error& e) in main() 65 catch (std::system_error& e) in main()
|
D | try_lock_for.pass.cpp | 54 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() 61 catch (std::system_error& e) in f()
|
D | try_lock_until.pass.cpp | 54 catch (std::system_error& e) in main() 70 catch (std::system_error& e) in main()
|
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/ |
D | unlock.pass.cpp | 46 catch (std::system_error& e) in main() 58 catch (std::system_error& e) in main()
|
D | try_lock.pass.cpp | 50 catch (std::system_error& e) in main() 66 catch (std::system_error& e) in main()
|
D | try_lock_for.pass.cpp | 55 catch (std::system_error& e) in main() 71 catch (std::system_error& e) in main()
|
D | try_lock_until.pass.cpp | 55 catch (std::system_error& e) in main() 71 catch (std::system_error& e) in main()
|
D | lock.pass.cpp | 62 catch (std::system_error& e) in f() 75 catch (std::system_error& e) in f()
|
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.member/ |
D | join.pass.cpp | 62 } catch (std::system_error const&) { in main() 73 } catch (std::system_error const&) { in main()
|
/external/libcxx/test/std/numerics/rand/rand.device/ |
D | eval.pass.cpp | 36 catch (const std::system_error&) in main()
|
/external/libcxx/test/std/diagnostics/syserr/syserr.syserr/syserr.syserr.members/ |
D | ctor_error_code.pass.cpp | 24 std::system_error se(static_cast<int>(std::errc::not_a_directory), in main()
|
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_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 | 54 throw system_error(make_error_code(errc::operation_not_permitted), in _M_start_thread()
|