Lines Matching refs:errno
46 # include <errno.h>
318 // -1 on failure, and set errno to EINTR when it is interrupted and
321 // errno to EINTR. If the expression evaluates to -1 but errno is
328 } while (gtest_retval == -1 && errno == EINTR); \
337 // Returns the message describing the last system error in errno.
339 return errno == 0 ? "" : posix::StrError(errno);
356 } while (num_read == -1 && errno == EINTR);
361 const int last_error = errno;
471 } while (bytes_read == -1 && errno == EINTR);