Home
last modified time | relevance | path

Searched refs:EINTR (Results 1 – 5 of 5) sorted by relevance

/libcore/luni/src/main/native/
DNetFd.h63 if (fd.isClosed() || errno != EINTR) { \
DPortability.h100 } while (_rc == -1 && errno == EINTR); \
Dlibcore_io_Posix.cpp157 if (_rc == -1 && _syscallErrno != EINTR) { \
192 if (_rc == -1 && _syscallErrno != EINTR) { \
1305 if (rc >= 0 || errno != EINTR) { in Posix_poll()
1358 while ((errno = posix_fallocate64(fd, offset, length)) == EINTR) { in Posix_posix_fallocate()
Dandroid_system_OsConstants.cpp159 initConstant(env, c, "EINTR", EINTR); in OsConstants_initConstants()
/libcore/luni/src/main/java/android/system/
DOsConstants.java186 public static final int EINTR = placeholder(); field in OsConstants
717 if (errno == EINTR) { in errnoName()