| /src/external/bsd/atf/dist/tools/ |
| exceptions.cpp | 35 // The "system_error" type. 38 tools::system_error::system_error(const std::string& who, function in class:tools::system_error 46 tools::system_error::~system_error(void) 52 tools::system_error::code(void) 60 tools::system_error::what(void) 72 return "Unable to format system_error message";
|
| exceptions.hpp | 79 class system_error : public std::runtime_error { class in namespace:tools 84 system_error(const std::string&, const std::string&, int); 85 ~system_error(void) throw();
|
| /src/external/bsd/kyua-cli/dist/utils/process/ |
| exceptions.cpp | 57 process::system_error::system_error(const std::string& message_, function in class:process::system_error 66 process::system_error::~system_error(void) throw() 73 process::system_error::original_errno(void) const throw()
|
| exceptions_test.cpp | 49 ATF_TEST_CASE_WITHOUT_HEAD(system_error); variable 50 ATF_TEST_CASE_BODY(system_error) 52 const process::system_error e("Call failed", ENOENT); 62 ATF_ADD_TEST_CASE(tcs, system_error);
|
| exceptions.hpp | 54 class system_error : public error { class in namespace:utils::process 59 explicit system_error(const std::string&, const int); 60 ~system_error(void) throw();
|
| /src/external/bsd/atf/dist/atf-c++/detail/ |
| exceptions.hpp | 42 class system_error : public std::runtime_error { class in namespace:atf 47 system_error(const std::string&, const std::string&, int); 48 ~system_error(void) throw();
|
| exceptions.cpp | 47 // The "system_error" type. 50 atf::system_error::system_error(const std::string& who, function in class:atf::system_error 58 atf::system_error::~system_error(void) 64 atf::system_error::code(void) 72 atf::system_error::what(void) 84 return "Unable to format system_error message"; 101 throw atf::system_error("XXX", msg, ecode);
|
| /src/external/bsd/kyua-cli/dist/utils/fs/ |
| exceptions_test.cpp | 70 ATF_TEST_CASE_WITHOUT_HEAD(system_error); variable 71 ATF_TEST_CASE_BODY(system_error) 73 const fs::system_error e("Call failed", ENOENT); 85 ATF_ADD_TEST_CASE(tcs, system_error);
|
| exceptions.cpp | 127 fs::system_error::system_error(const std::string& message_, const int errno_) : function in class:fs::system_error 135 fs::system_error::~system_error(void) throw() 143 fs::system_error::original_errno(void) const throw()
|
| exceptions.hpp | 86 class system_error : public error { class in namespace:utils::fs 91 explicit system_error(const std::string&, const int); 92 ~system_error(void) throw();
|
| /src/external/bsd/kyua-cli/dist/utils/signals/ |
| exceptions_test.cpp | 58 ATF_TEST_CASE_WITHOUT_HEAD(system_error); variable 59 ATF_TEST_CASE_BODY(system_error) 61 const signals::system_error e("Call failed", ENOENT); 72 ATF_ADD_TEST_CASE(tcs, system_error);
|
| exceptions.cpp | 83 signals::system_error::system_error(const std::string& message_, function in class:signals::system_error 92 signals::system_error::~system_error(void) throw() 99 signals::system_error::original_errno(void) const throw()
|
| exceptions.hpp | 67 class system_error : public error { class in namespace:utils::signals 72 explicit system_error(const std::string&, const int); 73 ~system_error(void) throw();
|
| /src/external/apache2/llvm/dist/libcxx/src/ |
| system_error.cpp | 1 //===---------------------- system_error.cpp ------------------------------===// 11 #include "system_error" 114 // system_error functions not modify errno). 229 // system_error 232 system_error::__init(const error_code& ec, string what_arg) 243 system_error::system_error(error_code ec, const string& what_arg) function in class:system_error 249 system_error::system_error(error_code ec, const char* what_arg) function in class:system_error 255 system_error::system_error(error_code ec function in class:system_error 261 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) function in class:system_error 267 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) function in class:system_error 273 system_error::system_error(int ev, const error_category& ecat) function in class:system_error [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| ios_base.h | 46 # include <system_error> 237 // Type that is layout-compatible with std::system_error 238 struct system_error : std::runtime_error struct in class:io_errc::ios_base 260 class _GLIBCXX_ABI_TAG_CXX11 failure : public system_error 311 // Stand-in for system_error::code() but returning by value.
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| ios_base.h | 46 # include <system_error> 258 // Type that is layout-compatible with std::system_error 259 struct system_error : std::runtime_error struct in class:io_errc::ios_base 281 class _GLIBCXX_ABI_TAG_CXX11 failure : public system_error 332 // Stand-in for system_error::code() but returning by value.
|
| /src/external/mit/libuv/dist/test/ |
| test-fs.c | 4832 int system_error; local 4837 system_error = uv_fs_get_system_error(&req); 4839 ASSERT_EQ(system_error, ERROR_FILE_NOT_FOUND); 4841 ASSERT_EQ(system_error, ENOENT);
|