Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/native/
DFileChannelImpl.c71 if (errno == EINTR) in handle()
175 if (errno == EINTR) { in FileChannelImpl_transferTo0()
206 if (errno == EINTR) in FileChannelImpl_transferTo0()
230 if (errno == EINTR) in FileChannelImpl_transferTo0()
265 if (errno == EINTR) in FileChannelImpl_transferTo0()
DPollArrayWrapper.c38 } while((_result == -1) && (errno == EINTR)); \
54 if (res < 0 && errno == EINTR) { in ipoll()
Dlinux_close.cpp76 } while (rv == -1 && errno == EINTR); in closefd()
121 } while (ret == -1 && errno == EINTR); \
233 if (rv < 0 && errno == EINTR) { in NET_Timeout()
Dnio_util.h36 } while((_result == -1) && (errno == EINTR)); \
DIOUtil.c169 else if (errno == EINTR) in convertReturnVal()
194 else if (errno == EINTR) in convertLongReturnVal()
DUnixCopyFile.c38 } while((_result == -1) && (errno == EINTR)); \
Dio_util_md.h83 } while((_result == -1) && (errno == EINTR)); \
DSocketInputStream.c136 case EINTR: in SocketInputStream_socketRead0()
DDatagramChannelImpl.c175 if (errno == EINTR) { in Java_sun_nio_ch_DatagramChannelImpl_receive0()
265 if (errno == EINTR) { in Java_sun_nio_ch_DatagramChannelImpl_send0()
DServerSocketChannelImpl.c122 if (errno == EINTR) in Java_sun_nio_ch_ServerSocketChannelImpl_accept0()
DFileDispatcherImpl.c126 if (errno == EINTR) in handle()
221 if (errno == EINTR) in FileDispatcherImpl_lock0()
DLinuxWatchService.c146 if (errno == EINTR) { in Java_sun_nio_fs_LinuxWatchService_poll()
DUNIXProcess_md.c162 } while(((_result) == -1) && (errno == EINTR)); \
336 case EINTR: break; in UNIXProcess_waitForProcessExit()
677 } else if (errno == EINTR) { in readFully()
DUnixNativeDispatcher.c76 } while((_result == -1) && (errno == EINTR)); \
82 } while((_result == NULL) && (errno == EINTR)); \
352 } while (fp == NULL && errno == EINTR); in Java_sun_nio_fs_UnixNativeDispatcher_fopen0()
371 if (fclose(fp) == EOF && errno != EINTR) { in Java_sun_nio_fs_UnixNativeDispatcher_fclose()
681 if (closedir(dirp) == -1 && errno != EINTR) { in Java_sun_nio_fs_UnixNativeDispatcher_closedir()
DLinuxNativeDispatcher.c164 } while (fp == NULL && errno == EINTR); in Java_sun_nio_fs_LinuxNativeDispatcher_setmntent0()
DNet.c351 } else if (errno == EINTR) { in Java_sun_nio_ch_Net_connect0()
763 } else if (errno == EINTR) { in Java_sun_nio_ch_Net_poll()
Dzip_util.c203 } else if (n == JVM_IO_ERR && errno == EINTR) { in readFullyAt()
/libcore/luni/src/main/native/
DPortability.h46 } while (_rc == -1 && errno == EINTR); \
DNetFd.h65 if (fd.isClosed() || errno != EINTR) { \
Dlibcore_io_Linux.cpp173 if (_rc == -1 && _syscallErrno != EINTR) { \
212 if (_rc == -1 && _syscallErrno != EINTR) { \
1898 if (rc >= 0 || errno != EINTR) { in Linux_poll()
1947 while ((errno = posix_fallocate64(fd, offset, length)) == EINTR) { in Linux_posix_fallocate()
2331 if (ret == -1 && spliceErrno != EINTR) { in Linux_splice()
Dandroid_system_OsConstants.cpp162 initConstant(env, c, "EINTR", EINTR); in OsConstants_initConstants()
/libcore/luni/src/main/java/android/system/
DOsConstants.java200 public static final int EINTR = placeholder(); field in OsConstants
759 if (errno == EINTR) { in errnoName()