Home
last modified time | relevance | path

Searched refs:system_error (Results 1 – 25 of 33) sorted by relevance

12

/freebsd-12.1/contrib/libc++/src/
H A Dsystem_error.cpp233 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()
H A Dios.cpp79 : system_error(ec, msg) in failure()
84 : system_error(ec, msg) in failure()
/freebsd-12.1/contrib/atf/atf-c++/detail/
H A Dexceptions.cpp47 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 Dexceptions.hpp38 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 Dfs.cpp420 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()
H A Dexceptions_test.cpp92 } catch (const atf::system_error& e) { in ATF_TEST_CASE_BODY()
H A Dfs_test.cpp507 ATF_REQUIRE_THROW(atf::system_error, remove(path("files/dir"))); in ATF_TEST_CASE_BODY()
/freebsd-12.1/contrib/libc++/include/experimental/
H A Dsystem_error2 //===-------------------------- 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."
/freebsd-12.1/contrib/libc++/include/
H A Dsystem_error15 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);
117 system_error(int ev, const error_category& ecat);
460 // system_error
462 class _LIBCPP_TYPE_VIS system_error
469 system_error(error_code __ec);
472 system_error(int __ev, const error_category& __ecat);
[all …]
H A Dmodule.modulemap436 module system_error {
437 header "system_error"
H A D__errc15 system_error synopsis
H A Dios217 #include <system_error>
421 : public system_error
H A D__mutex_base16 #include <system_error>
H A Dthread95 #include <system_error>
/freebsd-12.1/lib/librpcsec_gss/
H A Drpcsec_gss_misc.c39 _rpc_gss_set_error(int rpc_gss_error, int system_error) in _rpc_gss_set_error() argument
43 _rpc_gss_error.system_error = system_error; in _rpc_gss_set_error()
H A Drpcsec_gss_int.h88 void _rpc_gss_set_error(int rpc_gss_error, int system_error);
/freebsd-12.1/sys/rpc/rpcsec_gss/
H A Drpcsec_gss_misc.c43 _rpc_gss_set_error(int rpc_gss_error, int system_error) in _rpc_gss_set_error() argument
47 _rpc_gss_error.system_error = system_error; in _rpc_gss_set_error()
H A Drpcsec_gss_int.h88 void _rpc_gss_set_error(int rpc_gss_error, int system_error);
/freebsd-12.1/crypto/heimdal/lib/krb5/
H A Deai_to_heim_errno.c48 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-12.1/include/rpc/
H A Drpcsec_gss.h134 int system_error; /* same as errno */ member
177 bool_t __rpc_gss_set_error(int rpc_gss_error, int system_error);
/freebsd-12.1/lib/libc++/
H A DMakefile44 SRCS+= system_error.cpp
197 STD_HEADERS+= system_error
251 EXP_HEADERS+= system_error
/freebsd-12.1/tests/sys/fs/fusefs/
H A Dmockfs.cc387 throw(std::system_error(errno, std::system_category(), in MockFS()
399 throw(std::system_error(errno, std::system_category(), in MockFS()
443 throw(std::system_error(errno, std::system_category(), in MockFS()
455 throw(std::system_error(errno, std::system_category(), in MockFS()
458 throw(std::system_error(errno, std::system_category(), in MockFS()
/freebsd-12.1/contrib/atf/atf-sh/
H A Datf-check.cpp122 throw atf::system_error("atf_check::temp_file::temp_file(" + in temp_file()
134 } catch (const atf::system_error&) { in ~temp_file()
149 throw atf::system_error("atf_check", "write(2) failed", errno); in write()
/freebsd-12.1/sys/rpc/
H A Drpcsec_gss.h134 int system_error; /* same as errno */ member
470 bool_t __rpc_gss_set_error(int rpc_gss_error, int system_error);
/freebsd-12.1/tools/regression/rpcsec_gss/
H A Drpctest.c310 e.rpc_gss_error, e.system_error); in test_server()

12