Lines Matching refs:errno
51 #include <errno.h>
324 // -1 on failure, and set errno to EINTR when it is interrupted and
327 // errno to EINTR. If the expression evaluates to -1 but errno is
334 } while (gtest_retval == -1 && errno == EINTR); \
343 // Returns the message describing the last system error in errno.
345 return errno == 0 ? "" : posix::StrError(errno);
362 } while (num_read == -1 && errno == EINTR);
367 const int last_error = errno;
478 } while (bytes_read == -1 && errno == EINTR);