/external/libcxx/src/ |
D | system_error.cpp | 233 system_error::__init(const error_code& ec, string what_arg) in __init() 244 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 280 system_error::~system_error() _NOEXCEPT in ~system_error() 288 throw system_error(error_code(ev, system_category()), what_arg); in __throw_system_error()
|
/external/llvm-project/libcxx/src/ |
D | system_error.cpp | 232 system_error::__init(const error_code& ec, string what_arg) in __init() 243 system_error::system_error(error_code ec, const string& what_arg) in system_error() function in system_error 249 system_error::system_error(error_code ec, const char* what_arg) in system_error() function in system_error 255 system_error::system_error(error_code ec) in system_error() function in system_error 261 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) in system_error() function in system_error 267 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) in system_error() function in system_error 273 system_error::system_error(int ev, const error_category& ecat) in system_error() function in system_error 279 system_error::~system_error() _NOEXCEPT in ~system_error() 287 throw system_error(error_code(ev, system_category()), what_arg); in __throw_system_error()
|
/external/fmtlib/src/ |
D | os.cc | 157 FMT_THROW(system_error(errno, "cannot open file {}", filename.c_str())); in buffered_file() 164 if (result != 0) FMT_THROW(system_error(errno, "cannot close file")); in close() 172 if (fd == -1) FMT_THROW(system_error(errno, "cannot get file descriptor")); in fileno() 186 FMT_THROW(system_error(errno, "cannot open file {}", path.c_str())); in file() 202 if (result != 0) FMT_THROW(system_error(errno, "cannot close file")); in close() 224 FMT_THROW(system_error(errno, "cannot get file attributes")); in size() 234 if (result < 0) FMT_THROW(system_error(errno, "cannot read from file")); in read() 241 if (result < 0) FMT_THROW(system_error(errno, "cannot write to file")); in write() 250 FMT_THROW(system_error(errno, "cannot duplicate file descriptor {}", fd)); in dup() 258 FMT_THROW(system_error(errno, "cannot duplicate file descriptor {} to {}", in dup2() [all …]
|
/external/libcxx/include/experimental/ |
D | system_error | 2 //===-------------------------- system_error ------------------------------===// 16 _LIBCPP_WARNING("<experimental/system_error> has been removed. Use <system_error> instead.") 18 # warning "<experimental/system_error> has been removed. Use <system_error> instead."
|
/external/llvm-project/libcxx/include/ |
D | system_error | 2 //===---------------------------- system_error ----------------------------===// 14 system_error synopsis 107 class system_error 111 system_error(error_code ec, const string& what_arg); 112 system_error(error_code ec, const char* what_arg); 113 system_error(error_code ec); 114 system_error(int ev, const error_category& ecat, const string& what_arg); 115 system_error(int ev, const error_category& ecat, const char* what_arg); 116 system_error(int ev, const error_category& ecat); 459 // system_error [all …]
|
/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); 460 // 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/llvm-project/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/llvm-project/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.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 | 51 catch (std::system_error& e) in main() 67 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()
|
/external/llvm-project/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/ |
D | unlock.pass.cpp | 44 catch (std::system_error& e) in main() 56 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 | 53 catch (std::system_error& e) in main() 69 catch (std::system_error& e) in main()
|
D | try_lock_until.pass.cpp | 53 catch (std::system_error& e) in main() 69 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()
|
/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()
|
/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/llvm-project/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()
|