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

  /libcore/luni/src/main/java/java/nio/
IoVec.java 28 final class IoVec {
41 IoVec(ByteBuffer[] byteBuffers, int offset, int bufferCount, Direction direction) {
FileChannelImpl.java 319 private int transferIoVec(IoVec ioVec) throws IOException {
320 if (ioVec.init() == 0) {
327 bytesTransferred = ioVec.doTransfer(fd);
332 ioVec.didTransfer(bytesTransferred);
340 return transferIoVec(new IoVec(buffers, offset, length, IoVec.Direction.READV));
505 return transferIoVec(new IoVec(buffers, offset, length, IoVec.Direction.WRITEV));
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp 162 class IoVec {
164 IoVec(JNIEnv* env, size_t bufferCount) : mEnv(env), mBufferCount(bufferCount) {
189 struct iovec iov;
197 ~IoVec() {
204 iovec* get() {
215 std::vector<iovec> mIoVec;
    [all...]

Completed in 511 milliseconds