Home
last modified time | relevance | path

Searched defs:system_error (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/system/include/boost/system/
Dsystem_error.hpp22 class BOOST_SYMBOL_VISIBLE system_error : public std::runtime_error class
27 explicit system_error( error_code ec ) in system_error() function in boost::system::system_error
30 system_error( error_code ec, const std::string & what_arg ) in system_error() function in boost::system::system_error
33 system_error( error_code ec, const char* what_arg ) in system_error() function in boost::system::system_error
36 system_error( int ev, const error_category & ecat ) in system_error() function in boost::system::system_error
39 system_error( int ev, const error_category & ecat, in system_error() function in boost::system::system_error
43 system_error( int ev, const error_category & ecat, in system_error() function in boost::system::system_error
/aosp_15_r20/external/libcxx/src/
H A Dsystem_error.cpp244 system_error::system_error(error_code ec, const string& what_arg) in system_error() function in system_error
250 system_error::system_error(error_code ec, const char* what_arg) in system_error() function in system_error
256 system_error::system_error(error_code ec) in system_error() function in system_error
262 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) in system_error() function in system_error
268 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) in system_error() function in system_error
274 system_error::system_error(int ev, const error_category& ecat) in system_error() function in system_error
/aosp_15_r20/external/cronet/third_party/libc++/src/src/
H A Dsystem_error.cpp194 system_error::system_error(error_code ec, const string& what_arg) in system_error() function in system_error
197 system_error::system_error(error_code ec, const char* what_arg) in system_error() function in system_error
200 system_error::system_error(error_code ec) : runtime_error(make_error_str(ec)), __ec_(ec) {} in system_error() function in system_error
202 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) in system_error() function in system_error
205 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) in system_error() function in system_error
208 system_error::system_error(int ev, const error_category& ecat) in system_error() function in system_error
/aosp_15_r20/external/ot-br-posix/third_party/Simple-web-server/repo/
H A Dasio_compatibility.hpp13 using system_error = std::system_error; typedef
24 using system_error = boost::system::system_error; typedef
/aosp_15_r20/external/parameter-framework/asio-1.10.6/include/asio/
H A Dsystem_error.hpp24 typedef std::system_error system_error; typedef
/aosp_15_r20/external/clang/test/SemaCXX/
H A DPR9461.cpp31 struct system_error:runtime_error{ // expected-note {{to match}} struct
/aosp_15_r20/external/fmtlib/test/
H A Dformat-test.cc282 TEST(util_test, system_error) { in TEST() argument