Searched refs:byteCounts (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java244 @Override public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { argument
246 return os.readv(fd, buffers, offsets, byteCounts);
322 @Override public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { argument
324 return os.writev(fd, buffers, offsets, byteCounts);
H A DOs.java125 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; argument
171 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; argument
H A DForwardingOs.java132 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return os.readv(fd, buffers, offsets, byteCounts); } argument
178 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return os.writev(fd, buffers, offsets, byteCounts); } argument
H A DPosix.java174 public native int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; argument
276 public native int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; argument
/libcore/luni/src/main/java/android/system/
H A DOs.java383 public static int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.readv(fd, buffers, offsets, byteCounts); } argument
576 public static int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.writev(fd, buffers, offsets, byteCounts); } argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp287 ScopedIntArrayRO byteCounts(mEnv, javaByteCounts);
288 if (byteCounts.get() == NULL) {
302 iov.iov_len = byteCounts[i];
1521 static jint Posix_readv(JNIEnv* env, jobject, jobject javaFd, jobjectArray buffers, jintArray offsets, jintArray byteCounts) { argument
1523 if (!ioVec.init(buffers, offsets, byteCounts)) {
1952 static jint Posix_writev(JNIEnv* env, jobject, jobject javaFd, jobjectArray buffers, jintArray offsets, jintArray byteCounts) { argument
1954 if (!ioVec.init(buffers, offsets, byteCounts)) {

Completed in 35 milliseconds