Lines Matching refs:error_condition
29 virtual error_condition default_error_condition(int ev) const noexcept;
30 virtual bool equivalent(int code, const error_condition& condition) const noexcept;
73 error_condition default_error_condition() const noexcept;
83 class error_condition
87 error_condition() noexcept;
88 error_condition(int val, const error_category& cat) noexcept;
90 error_condition(ErrorConditionEnum e) noexcept;
95 error_condition& operator=(ErrorConditionEnum e) noexcept;
124 error_condition make_error_condition(errc e) noexcept;
128 bool operator==(const error_code& lhs, const error_condition& rhs) noexcept;
129 bool operator==(const error_condition& lhs, const error_code& rhs) noexcept; // re…
130 bool operator==(const error_condition& lhs, const error_condition& rhs) noexcept;
132 bool operator!=(const error_code& lhs, const error_condition& rhs) noexcept; // re…
133 bool operator!=(const error_condition& lhs, const error_code& rhs) noexcept; // re…
134 bool operator!=(const error_condition& lhs, const error_condition& rhs) noexcept; // re…
135 bool operator<(const error_condition& lhs, const error_condition& rhs) noexcept; // re…
138 strong_ordering operator<=>(const error_condition& lhs, const error_condition& rhs) noexcept; // C+…
141 template <> struct hash<std::error_condition>;
152 #include <__system_error/error_condition.h>