Searched refs:byteCounts (Results 1 – 6 of 6) sorted by relevance
| /libcore/luni/src/main/java/libcore/io/ |
| D | BlockGuardOs.java | 343 …@Override public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) t… in readv() argument 345 return super.readv(fd, buffers, offsets, byteCounts); in readv() 452 …c int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoExc… in writev() argument 454 return super.writev(fd, buffers, offsets, byteCounts); in writev()
|
| D | ForwardingOs.java | 634 … int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return os.readv(… in readv() argument 953 … int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return os.writev… in writev() argument
|
| D | Os.java | 538 …public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws Errn… in readv() argument 784 …public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws Err… in writev() argument
|
| D | Linux.java | 234 …public native int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) thro… in readv() argument 339 …public native int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) thr… in writev() argument
|
| /libcore/luni/src/main/java/android/system/ |
| D | Os.java | 610 …[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.re… in readv() argument 1003 …[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.wr… in writev() argument
|
| /libcore/luni/src/main/native/ |
| D | libcore_io_Linux.cpp | 302 ScopedIntArrayRO byteCounts(mEnv, javaByteCounts); in init() local 303 if (byteCounts.get() == NULL) { in init() 317 iov.iov_len = byteCounts[i]; in init() 2153 …Env* env, jobject, jobject javaFd, jobjectArray buffers, jintArray offsets, jintArray byteCounts) { in Linux_readv() argument 2155 if (!ioVec.init(buffers, offsets, byteCounts)) { in Linux_readv() 2743 …Env* env, jobject, jobject javaFd, jobjectArray buffers, jintArray offsets, jintArray byteCounts) { in Linux_writev() argument 2745 if (!ioVec.init(buffers, offsets, byteCounts)) { in Linux_writev()
|