Searched refs:Errno (Results 1 – 2 of 2) sorted by relevance
322 class Errno {324 Errno(int e) : errno_(e) {} in Errno() function327 void PrintTo(const Errno& e, std::ostream* os);328 bool operator==(const Errno& lhs, const Errno& rhs);329 #define ASSERT_ERRNO(expected_errno) ASSERT_EQ(Errno(expected_errno), Errno(errno))330 #define EXPECT_ERRNO(expected_errno) EXPECT_EQ(Errno(expected_errno), Errno(errno))
76 void PrintTo(const Errno& e, std::ostream* os) { in PrintTo()97 bool operator==(const Errno& lhs, const Errno& rhs) { in operator ==()