HelenOS sources
error_code 40 uspace/lib/cpp/include/__bits/system_error.hpp class error_code;
error_code 162 uspace/lib/cpp/include/__bits/system_error.hpp virtual bool equivalent(const error_code&, int) const noexcept;
error_code 184 uspace/lib/cpp/include/__bits/system_error.hpp error_code() noexcept;
error_code 185 uspace/lib/cpp/include/__bits/system_error.hpp error_code(int, const error_category&) noexcept;
error_code 203 uspace/lib/cpp/include/__bits/system_error.hpp error_code& operator=(
error_code 238 uspace/lib/cpp/include/__bits/system_error.hpp error_code make_error_code(errc e) noexcept;
error_code 239 uspace/lib/cpp/include/__bits/system_error.hpp bool operator<(const error_code&, const error_code&) noexcept;
error_code 243 uspace/lib/cpp/include/__bits/system_error.hpp const error_code& ec)
error_code 319 uspace/lib/cpp/include/__bits/system_error.hpp bool operator==(const error_code&, const error_code&) noexcept;
error_code 320 uspace/lib/cpp/include/__bits/system_error.hpp bool operator==(const error_code&, const error_condition&) noexcept;
error_code 321 uspace/lib/cpp/include/__bits/system_error.hpp bool operator==(const error_condition&, const error_code&) noexcept;
error_code 323 uspace/lib/cpp/include/__bits/system_error.hpp bool operator!=(const error_code&, const error_code&) noexcept;
error_code 324 uspace/lib/cpp/include/__bits/system_error.hpp bool operator!=(const error_code&, const error_condition&) noexcept;
error_code 325 uspace/lib/cpp/include/__bits/system_error.hpp bool operator!=(const error_condition&, const error_code&) noexcept;
error_code 335 uspace/lib/cpp/include/__bits/system_error.hpp system_error(error_code, const string&);
error_code 336 uspace/lib/cpp/include/__bits/system_error.hpp system_error(error_code, const char*);
error_code 337 uspace/lib/cpp/include/__bits/system_error.hpp system_error(error_code);
error_code 342 uspace/lib/cpp/include/__bits/system_error.hpp const error_code& code() const noexcept;
error_code 345 uspace/lib/cpp/include/__bits/system_error.hpp error_code code_;
error_code 356 uspace/lib/cpp/include/__bits/system_error.hpp struct hash<error_code>
error_code 358 uspace/lib/cpp/include/__bits/system_error.hpp size_t operator()(const error_code& ec) const noexcept
error_code 364 uspace/lib/cpp/include/__bits/system_error.hpp using argument_type = error_code;
error_code 65 uspace/lib/cpp/include/__bits/thread/future_common.hpp error_code make_error_code(future_errc) noexcept;
error_code 77 uspace/lib/cpp/include/__bits/thread/future_common.hpp future_error(error_code ec);
error_code 79 uspace/lib/cpp/include/__bits/thread/future_common.hpp const error_code& code() const noexcept;
error_code 83 uspace/lib/cpp/include/__bits/thread/future_common.hpp error_code code_;
error_code 35 uspace/lib/cpp/src/future.cpp error_code make_error_code(future_errc ec) noexcept
error_code 37 uspace/lib/cpp/src/future.cpp return error_code{static_cast<int>(ec), future_category()};
error_code 75 uspace/lib/cpp/src/future.cpp future_error::future_error(error_code ec)
error_code 79 uspace/lib/cpp/src/future.cpp const error_code& future_error::code() const noexcept
error_code 49 uspace/lib/cpp/src/system_error.cpp bool error_category::equivalent(const error_code& ec, int cond) const noexcept
error_code 126 uspace/lib/cpp/src/system_error.cpp error_code::error_code() noexcept
error_code 130 uspace/lib/cpp/src/system_error.cpp error_code::error_code(int val, const error_category& cat) noexcept
error_code 134 uspace/lib/cpp/src/system_error.cpp void error_code::assign(int val, const error_category& cat) noexcept
error_code 140 uspace/lib/cpp/src/system_error.cpp void error_code::clear() noexcept
error_code 146 uspace/lib/cpp/src/system_error.cpp int error_code::value() const noexcept
error_code 151 uspace/lib/cpp/src/system_error.cpp const error_category& error_code::category() const noexcept
error_code 156 uspace/lib/cpp/src/system_error.cpp error_condition error_code::default_error_condition() const noexcept
error_code 161 uspace/lib/cpp/src/system_error.cpp string error_code::message() const
error_code 166 uspace/lib/cpp/src/system_error.cpp error_code make_error_code(errc e) noexcept
error_code 168 uspace/lib/cpp/src/system_error.cpp return error_code{static_cast<int>(e), generic_category()};
error_code 171 uspace/lib/cpp/src/system_error.cpp bool operator<(const error_code& lhs, const error_code& rhs) noexcept
error_code 223 uspace/lib/cpp/src/system_error.cpp bool operator==(const error_code& lhs, const error_code& rhs) noexcept
error_code 228 uspace/lib/cpp/src/system_error.cpp bool operator==(const error_code& lhs, const error_condition& rhs) noexcept
error_code 234 uspace/lib/cpp/src/system_error.cpp bool operator==(const error_condition& lhs, const error_code& rhs) noexcept
error_code 245 uspace/lib/cpp/src/system_error.cpp bool operator!=(const error_code& lhs, const error_code& rhs) noexcept
error_code 250 uspace/lib/cpp/src/system_error.cpp bool operator!=(const error_code& lhs, const error_condition& rhs) noexcept
error_code 255 uspace/lib/cpp/src/system_error.cpp bool operator!=(const error_condition& lhs, const error_code& rhs) noexcept
error_code 265 uspace/lib/cpp/src/system_error.cpp system_error::system_error(error_code ec, const string& what_arg)
error_code 269 uspace/lib/cpp/src/system_error.cpp system_error::system_error(error_code ec, const char* what_arg)
error_code 273 uspace/lib/cpp/src/system_error.cpp system_error::system_error(error_code ec)
error_code 291 uspace/lib/cpp/src/system_error.cpp const error_code& system_error::code() const noexcept
HelenOS homepage, sources at GitHub