HomeSort by relevance Sort by last modified time
    Searched full:bytecounts (Results 1 - 6 of 6) sorted by null

  /libcore/luni/src/main/java/java/nio/
IoVec.java 37 private final int[] byteCounts;
48 this.byteCounts = new int[bufferCount];
66 byteCounts[i] = remaining;
75 int result = Libcore.os.readv(fd, ioBuffers, offsets, byteCounts);
81 return Libcore.os.writev(fd, ioBuffers, offsets, byteCounts);
91 if (byteCounts[i] < byteCount) {
93 byteCount -= byteCounts[i];
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 152 @Override public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException {
154 return os.readv(fd, buffers, offsets, byteCounts);
194 @Override public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException {
196 return os.writev(fd, buffers, offsets, byteCounts);
ForwardingOs.java 97 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException { return os.readv(fd, buffers, offsets, byteCounts); }
127 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException { return os.writev(fd, buffers, offsets, byteCounts); }
Os.java 90 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException;
121 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException;
Posix.java 121 public native int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException;
181 public native int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException;
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp 176 ScopedIntArrayRO byteCounts(mEnv, javaByteCounts);
177 if (byteCounts.get() == NULL) {
191 iov.iov_len = byteCounts[i];
    [all...]

Completed in 189 milliseconds