Home
last modified time | relevance | path

Searched refs:Errno (Results 1 – 2 of 2) sorted by relevance

/bionic/tests/
Dutils.h322 class Errno {
324 Errno(int e) : errno_(e) {} in Errno() function
327 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))
Dutils.cpp76 void PrintTo(const Errno& e, std::ostream* os) { in PrintTo()
97 bool operator==(const Errno& lhs, const Errno& rhs) { in operator ==()