/freebsd/contrib/llvm-project/libcxx/include/__system_error/ |
H A D | system_error.h | 26 class _LIBCPP_EXPORTED_FROM_ABI system_error : public runtime_error { 30 system_error(error_code __ec, const string& __what_arg); 31 system_error(error_code __ec, const char* __what_arg); 32 system_error(error_code __ec); 33 system_error(int __ev, const error_category& __ecat, const string& __what_arg); 34 system_error(int __ev, const error_category& __ecat, const char* __what_arg); 35 system_error(int __ev, const error_category& __ecat); 36 _LIBCPP_HIDE_FROM_ABI system_error(const system_error&) _NOEXCEPT = default; 37 ~system_error() _NOEXCEP [all...] |
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | system_error.cpp | 18 #include <system_error> 82 // system_error functions not modify errno). 192 // system_error in message() 194 system_error::system_error(error_code ec, const string& what_arg) in message() 197 system_error::system_error(error_code ec, const char* what_arg) in message() 200 system_error::system_error(error_code ec) : runtime_error(make_error_str(ec)), __ec_(ec) {} 202 system_error in default_error_condition() 247 system_error::system_error(error_code ec, const string& what_arg) system_error() function in system_error 253 system_error::system_error(error_code ec, const char* what_arg) system_error() function in system_error 259 system_error::system_error(error_code ec) system_error() function in system_error 265 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) system_error() function in system_error 271 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) system_error() function in system_error 277 system_error::system_error(int ev, const error_category& ecat) system_error() function in system_error [all...] |
/freebsd/contrib/atf/atf-c++/detail/ |
H A D | exceptions.cpp | 47 atf::system_error::system_error(const std::string& who, in system_error() function in atf::system_error 55 atf::system_error::~system_error(void) in ~system_error() 61 atf::system_error::code(void) in code() 69 atf::system_error::what(void) in what() 98 throw atf::system_error("XXX", msg, ecode); in throw_libc_error()
|
H A D | exceptions.hpp | 38 class system_error : public std::runtime_error { class 43 system_error(const std::string&, const std::string&, int); 44 ~system_error(void) throw();
|
H A D | fs.cpp | 420 throw system_error(IMPL_NAME "::directory::directory(" + in directory() 430 throw system_error(IMPL_NAME "::directory::directory(" + in directory() 498 throw atf::system_error(IMPL_NAME "::remove(" + p.str() + ")", in remove() 502 throw atf::system_error(IMPL_NAME "::remove(" + p.str() + ")", in remove()
|
/freebsd/contrib/kyua/utils/process/ |
H A D | exceptions.cpp | 57 process::system_error::system_error(const std::string& message_, in system_error() function in process::system_error 66 process::system_error::~system_error(void) throw() in ~system_error() 73 process::system_error::original_errno(void) const throw() in original_errno()
|
H A D | exceptions_test.cpp | 49 ATF_TEST_CASE_WITHOUT_HEAD(system_error); 50 ATF_TEST_CASE_BODY(system_error) in ATF_TEST_CASE_BODY() argument 52 const process::system_error e("Call failed", ENOENT); in ATF_TEST_CASE_BODY() 62 ATF_ADD_TEST_CASE(tcs, system_error); in ATF_INIT_TEST_CASES()
|
H A D | exceptions.hpp | 54 class system_error : public error { class 59 explicit system_error(const std::string&, const int); 60 ~system_error(void) throw();
|
H A D | child.cpp | 103 throw process::system_error(F("dup2(%s, %s) failed") % old_fd % new_fd, in safe_dup() 124 throw process::system_error(F("Failed to create %s because open(2) " in open_for_append() 203 throw process::system_error("pipe(2) failed", errno); in fork_capture_aux() 212 throw process::system_error("fork(2) failed", errno); in fork_capture_aux() 222 } catch (const system_error& e) { in fork_capture_aux() 267 throw process::system_error("fork(2) failed", errno); in fork_files_aux() 283 } catch (const system_error& e) { in fork_files_aux()
|
H A D | operations.cpp | 82 throw process::system_error("Failed to wait for any child process", in safe_wait() 103 throw process::system_error(F("Failed to wait for PID %s") % pid, in safe_waitpid() 129 } catch (const system_error& error) { in exec() 185 throw system_error("Failed to execute " + program.str(), original_errno); in exec_unsafe()
|
/freebsd/contrib/kyua/utils/signals/ |
H A D | exceptions.cpp | 83 signals::system_error::system_error(const std::string& message_, in system_error() function in signals::system_error 92 signals::system_error::~system_error(void) throw() in ~system_error() 99 signals::system_error::original_errno(void) const throw() in original_errno()
|
H A D | exceptions_test.cpp | 58 ATF_TEST_CASE_WITHOUT_HEAD(system_error); 59 ATF_TEST_CASE_BODY(system_error) in ATF_TEST_CASE_BODY() argument 61 const signals::system_error e("Call failed", ENOENT); in ATF_TEST_CASE_BODY() 72 ATF_ADD_TEST_CASE(tcs, system_error); in ATF_INIT_TEST_CASES()
|
H A D | exceptions.hpp | 67 class system_error : public error { class 72 explicit system_error(const std::string&, const int); 73 ~system_error(void) throw();
|
H A D | programmer.cpp | 93 throw system_error(F("Could not install handler for signal %s") % in programmer() 110 } catch (const system_error& e) { in ~programmer() 135 throw system_error(F("Could not reset handler for signal %s") % in unprogram()
|
/freebsd/contrib/kyua/utils/fs/ |
H A D | operations.cpp | 247 throw fs::system_error(F("unmount(%s) failed") % mount_point, in unmount_with_unmount2() 268 throw fs::system_error("Cannot fork to execute unmount tool", in unmount_with_umount8() 283 throw fs::system_error("Failed to wait for unmount subprocess", in unmount_with_umount8() 312 throw fs::system_error(F("Cannot get information about %s") % path, in safe_stat() 367 throw fs::system_error(F("Failed to get current working directory"), in current_path() 440 throw fs::system_error(F("Failed to stat file system for %s") % path, in free_disk_space() 448 throw fs::system_error(F("Failed to stat file system for %s") % path, in free_disk_space() 480 throw fs::system_error(F("Failed to create directory %s") % dir, in mkdir() 500 } catch (const fs::system_error& e) { in mkdir_p() 558 throw fs::system_error(F("Cannot create temporary directory using " in mkdtemp_public() [all …]
|
H A D | exceptions.cpp | 127 fs::system_error::system_error(const std::string& message_, const int errno_) : in system_error() function in fs::system_error 135 fs::system_error::~system_error(void) throw() in ~system_error() 143 fs::system_error::original_errno(void) const throw() in original_errno()
|
H A D | exceptions_test.cpp | 70 ATF_TEST_CASE_WITHOUT_HEAD(system_error); 71 ATF_TEST_CASE_BODY(system_error) in ATF_TEST_CASE_BODY() argument 73 const fs::system_error e("Call failed", ENOENT); in ATF_TEST_CASE_BODY() 93 ATF_ADD_TEST_CASE(tcs, system_error); in ATF_INIT_TEST_CASES()
|
H A D | exceptions.hpp | 86 class system_error : public error { class 91 explicit system_error(const std::string&, const int); 92 ~system_error(void) throw();
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | system_error | 14 system_error synopsis 105 class system_error 109 system_error(error_code ec, const string& what_arg); 110 system_error(error_code ec, const char* what_arg); 111 system_error(error_code ec); 112 system_error(int ev, const error_category& ecat, const string& what_arg); 113 system_error(int ev, const error_category& ecat, const char* what_arg); 114 system_error(int ev, const error_category& ecat); 152 #include <__system_error/system_error.h>
|
/freebsd/sys/rpc/rpcsec_gss/ |
H A D | rpcsec_gss_misc.c | 40 _rpc_gss_set_error(int rpc_gss_error, int system_error) in _rpc_gss_set_error() argument 44 _rpc_gss_error.system_error = system_error; in _rpc_gss_set_error()
|
/freebsd/lib/librpcsec_gss/ |
H A D | rpcsec_gss_misc.c | 37 _rpc_gss_set_error(int rpc_gss_error, int system_error) in _rpc_gss_set_error() argument 41 _rpc_gss_error.system_error = system_error; in _rpc_gss_set_error()
|
/freebsd/contrib/llvm-project/libcxx/include/__filesystem/ |
H A D | filesystem_error.h | 30 …_AVAILABILITY_FILESYSTEM_LIBRARY _LIBCPP_EXPORTED_FROM_ABI filesystem_error : public system_error { 33 : system_error(__ec, __what), __storage_(make_shared<_Storage>(path(), path())) { in filesystem_error() 38 : system_error(__ec, __what), __storage_(make_shared<_Storage>(__p1, path())) { in filesystem_error() 43 : system_error(__ec, __what), __storage_(make_shared<_Storage>(__p1, __p2)) { in filesystem_error()
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | system_error.cppm |
|
/freebsd/crypto/heimdal/lib/krb5/ |
H A D | eai_to_heim_errno.c | 48 krb5_eai_to_heim_errno(int eai_errno, int system_error) in krb5_eai_to_heim_errno() argument 83 return system_error; in krb5_eai_to_heim_errno()
|
/freebsd/include/rpc/ |
H A D | rpcsec_gss.h | 132 int system_error; /* same as errno */ member 175 bool_t __rpc_gss_set_error(int rpc_gss_error, int system_error);
|