Lines Matching refs:errno
47 #include <errno.h>
320 // -1 on failure, and set errno to EINTR when it is interrupted and
323 // errno to EINTR. If the expression evaluates to -1 but errno is
330 } while (gtest_retval == -1 && errno == EINTR); \
339 // Returns the message describing the last system error in errno.
341 return errno == 0 ? "" : posix::StrError(errno);
358 } while (num_read == -1 && errno == EINTR);
363 const int last_error = errno;
474 } while (bytes_read == -1 && errno == EINTR);