| /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();
|
| env.cpp | 58 throw tools::system_error(IMPL_NAME "::set", 73 throw tools::system_error(IMPL_NAME "::set",
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| WindowsError.h | 12 #include <system_error>
|
| AutoConvert.h | 20 #include <system_error>
|
| RandomNumberGenerator.h | 21 #include <system_error>
|
| /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/process/ |
| 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();
|
| 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);
|
| /src/external/bsd/kyua-cli/dist/utils/signals/ |
| 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();
|
| 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_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);
|
| misc.cpp | 56 /// \throw signals::system_error If there is a problem trying to reset the 68 throw system_error(F("Failed to reset signal %s") % signo,
|
| programmer.cpp | 81 /// \throw signals::system_error If there is an error programming the signal. 92 throw system_error(F("Could not install handler for signal %s") % 109 } catch (const system_error& e) { 120 /// \throw system_error If unprogramming the signal failed. If this happens, 134 throw system_error(F("Could not reset handler for signal %s") %
|
| /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/bsd/kyua-cli/dist/utils/fs/ |
| 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();
|
| 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);
|
| operations.cpp | 72 /// \throw system_error An error on failure. 79 throw fs::system_error(F("Cannot get information about %s") % path, 105 throw fs::system_error(F("Failed to get current working directory"), 168 /// \throw system_error If the call to mkdir(2) fails. 174 throw fs::system_error(F("Failed to create directory %s") % dir, 188 /// \throw system_error If any call to mkdir(2) fails. 194 } catch (const fs::system_error& e) { 216 /// \throw fs::system_error If the call to mkdtemp(3) fails. 229 throw fs::system_error(F("Cannot create temporary directory using " 248 /// \throw fs::system_error If the call to mkstemp(3) fails [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| eai_to_heim_errno.c | 42 * @param system_error should have the value of errno after the failed getaddrinfo(). 50 krb5_eai_to_heim_errno(int eai_errno, int system_error) 85 return system_error;
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-cxxdump/ |
| Error.h | 1 //===- Error.h - system_error extensions for llvm-cxxdump -------*- C++ -*-===// 16 #include <system_error>
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| RelocationResolver.h | 29 #include <system_error>
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/ |
| cxx11-ios_failure.cc | 50 : system_error(io_errc::stream, __str) { } 53 : system_error(__ec, __str) { } 56 : system_error(__ec, __str) { }
|