Lines Matching defs:errc
494 using std::errc;
498 return errc::address_family_not_supported;
500 return errc::address_not_available;
502 return errc::address_in_use;
504 return errc::argument_list_too_long;
514 std::vector<std::errc> const& errors) {
516 for (auto errc : errors) {
517 if (cond.value() == static_cast<int>(errc))
524 inline bool ErrorIs(const std::error_code& ec, std::errc First, ErrcT... Rest) {
525 std::vector<std::errc> errors = {First, Rest...};
561 std::errc expected_err;
568 explicit ExceptionChecker(std::errc first_err, const char* fun_name,
572 explicit ExceptionChecker(fs::path p, std::errc first_err,
577 explicit ExceptionChecker(fs::path p1, fs::path p2, std::errc first_err,
588 // match textually with the strings generated for generic std::errc::*.