HomeSort by relevance Sort by last modified time
    Searched refs:READV (Results 1 - 3 of 3) sorted by null

  /libcore/luni/src/main/java/java/nio/
IoVec.java 25 * Used to implement java.nio read(ByteBuffer[])/write(ByteBuffer[]) operations as POSIX readv(2)
29 enum Direction { READV, WRITEV };
55 if (direction == Direction.READV) {
74 if (direction == Direction.READV) {
75 int result = Libcore.os.readv(fd, ioBuffers, offsets, byteCounts);
FileChannelImpl.java 351 return transferIoVec(new IoVec(buffers, offset, length, IoVec.Direction.READV));
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileIOInterruptTest.java 186 testChannelRead_exceptionWhenAlreadyClosed(ChannelReader.Method.READV);
218 testChannelRead_exceptionWhenAlreadyInterrupted(ChannelReader.Method.READV);
255 testChannelRead_exceptionOnCloseWhenBlocked(ChannelReader.Method.READV);
288 testChannelRead_exceptionOnInterrupt(ChannelReader.Method.READV);
527 READV,

Completed in 154 milliseconds