Home
last modified time | relevance | path

Searched refs:system_error (Results 1 – 25 of 37) sorted by relevance

12

/external/libcxx/src/
Dsystem_error.cpp147 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()
Dthread.cpp47 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/
Dsystem_error2 //===-------------------------- system_error ------------------------------===//
15 experimental/system_error synopsis
19 #include <system_error>
41 #include <system_error>
/external/libcxx/include/
Dsystem_error2 //===---------------------------- 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/
Dsystem_error.hpp24 typedef std::system_error system_error; typedef
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
Dthrow_error.ipp18 #include "asio/system_error.hpp"
27 asio::system_error e(err);
35 asio::system_error e(err, location);
/external/clang/test/SemaCXX/
DPR9461.cpp31 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/
Dunlock.pass.cpp42 catch (std::system_error& e) in main()
52 catch (std::system_error& e) in main()
Dtry_lock.pass.cpp46 catch (std::system_error& e) in main()
60 catch (std::system_error& e) in main()
Dtry_lock_for.pass.cpp51 catch (std::system_error& e) in main()
65 catch (std::system_error& e) in main()
Dtry_lock_until.pass.cpp51 catch (std::system_error& e) in main()
65 catch (std::system_error& e) in main()
Dlock.pass.cpp45 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/
Dunlock.pass.cpp47 catch (std::system_error& e) in main()
57 catch (std::system_error& e) in main()
Dtry_lock.pass.cpp51 catch (std::system_error& e) in main()
65 catch (std::system_error& e) in main()
Dtry_lock_for.pass.cpp56 catch (std::system_error& e) in main()
70 catch (std::system_error& e) in main()
Dtry_lock_until.pass.cpp56 catch (std::system_error& e) in main()
70 catch (std::system_error& e) in main()
Dlock.pass.cpp48 catch (std::system_error& e) in f()
59 catch (std::system_error& e) in f()
/external/libcxx/test/std/numerics/rand/rand.device/
Deval.pass.cpp32 catch (const std::system_error& e) in main()
/external/libcxx/test/std/diagnostics/syserr/syserr.syserr/syserr.syserr.members/
Dctor_int_error_category.pass.cpp24 std::system_error se(static_cast<int>(std::errc::not_a_directory), in main()
Dctor_error_code.pass.cpp24 std::system_error se(static_cast<int>(std::errc::not_a_directory), in main()
Dctor_error_code_string.pass.cpp25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg); in main()
Dctor_int_error_category_string.pass.cpp25 std::system_error se(static_cast<int>(std::errc::not_a_directory), in main()
Dctor_error_code_const_char_pointer.pass.cpp25 std::system_error se(make_error_code(std::errc::not_a_directory), what_arg.c_str()); in main()
Dctor_int_error_category_const_char_pointer.pass.cpp25 std::system_error se(static_cast<int>(std::errc::not_a_directory), in main()
/external/valgrind/drd/tests/
Dstd_thread.cpp53 throw system_error(make_error_code(errc::operation_not_permitted), in _M_start_thread()

12