Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/native/
DFileChannelImpl.c76 if (errno == EINTR) in handle()
180 if (errno == EINTR) { in FileChannelImpl_transferTo0()
211 if (errno == EINTR) in FileChannelImpl_transferTo0()
235 if (errno == EINTR) in FileChannelImpl_transferTo0()
270 if (errno == EINTR) in FileChannelImpl_transferTo0()
DPollArrayWrapper.c38 } while((_result == -1) && (errno == EINTR)); \
54 if (res < 0 && errno == EINTR) { in ipoll()
Dlinux_close.cpp81 } while (rv == -1 && errno == EINTR); in closefd()
126 } while (ret == -1 && errno == EINTR); \
238 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)); \
DDatagramChannelImpl.c177 if (errno == EINTR) { in Java_sun_nio_ch_DatagramChannelImpl_receive0()
267 if (errno == EINTR) { in Java_sun_nio_ch_DatagramChannelImpl_send0()
DSocketInputStream.c136 case EINTR: in SocketInputStream_socketRead0()
DServerSocketChannelImpl.c122 if (errno == EINTR) in Java_sun_nio_ch_ServerSocketChannelImpl_accept0()
DFileDispatcherImpl.c128 if (errno == EINTR) in handle()
223 if (errno == EINTR) in FileDispatcherImpl_lock0()
DUnixNativeDispatcher.c81 } while((_result == -1) && (errno == EINTR)); \
87 } while((_result == NULL) && (errno == EINTR)); \
357 } while (fp == NULL && errno == EINTR); in Java_sun_nio_fs_UnixNativeDispatcher_fopen0()
376 if (fclose(fp) == EOF && errno != EINTR) { in Java_sun_nio_fs_UnixNativeDispatcher_fclose()
428 if (res == -1 && errno != EINTR) { in Java_sun_nio_fs_UnixNativeDispatcher_close()
699 if (closedir(dirp) == -1 && errno != EINTR) { in Java_sun_nio_fs_UnixNativeDispatcher_closedir()
DLinuxWatchService.c152 if (errno == EINTR) { in Java_sun_nio_fs_LinuxWatchService_poll()
DUNIXProcess_md.c165 } while(((_result) == -1) && (errno == EINTR)); \
339 case EINTR: break; in UNIXProcess_waitForProcessExit()
694 } else if (errno == EINTR) { in readFully()
DLinuxNativeDispatcher.c164 } while (fp == NULL && errno == EINTR); in Java_sun_nio_fs_LinuxNativeDispatcher_setmntent0()
DNet.c357 } else if (errno == EINTR) { in Java_sun_nio_ch_Net_connect0()
781 } else if (errno == EINTR) { in Java_sun_nio_ch_Net_poll()
Dnet_util_md.c294 case EINTR: in NET_ThrowNew()
Dzip_util.c205 } else if (n == JVM_IO_ERR && errno == EINTR) { in readFullyAt()
/libcore/luni/src/main/native/
DPortability.h46 } while (_rc == -1 && errno == EINTR); \
Dlibcore_io_Linux.cpp180 if (_rc == -1 && _syscallErrno != EINTR) { \
219 if (_rc == -1 && _syscallErrno != EINTR) { \
1992 if (rc >= 0 || errno != EINTR) { in Linux_poll()
2041 while ((errno = posix_fallocate64(fd, offset, length)) == EINTR) { in Linux_posix_fallocate()
2447 if (ret == -1 && spliceErrno != EINTR) { in Linux_splice()
Dandroid_system_OsConstants.cpp163 initConstant(env, c, "EINTR", EINTR); in OsConstants_initConstants()
/libcore/luni/src/main/java/android/system/
DOsConstants.java210 public static final int EINTR = placeholder(); field in OsConstants
883 if (errno == EINTR) { in errnoName()