HomeSort by relevance Sort by last modified time
    Searched refs:byteCounts (Results 1 - 10 of 10) 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];
  /frameworks/av/media/img_utils/src/
TiffIfd.cpp 242 Vector<uint32_t> byteCounts;
246 byteCounts.add(lastChunkSize);
248 byteCounts.add(actualChunkSize);
254 static_cast<uint32_t>(numStrips), UNDEFINED_ENDIAN, byteCounts.array());
298 // Get old offsets and bytecounts
354 const uint32_t* byteCounts = stripByteCounts->getData<uint32_t>();
358 total += byteCounts[i];
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 238 @Override public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException {
240 return os.readv(fd, buffers, offsets, byteCounts);
316 @Override public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException {
318 return os.writev(fd, buffers, offsets, byteCounts);
Os.java 124 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException;
169 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException;
ForwardingOs.java 131 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return os.readv(fd, buffers, offsets, byteCounts); }
176 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return os.writev(fd, buffers, offsets, byteCounts); }
Posix.java 173 public native int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException;
274 public native int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException;
  /libcore/luni/src/main/java/android/system/
Os.java 377 public static int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.readv(fd, buffers, offsets, byteCounts); }
565 public static int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.writev(fd, buffers, offsets, byteCounts); }
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp 277 ScopedIntArrayRO byteCounts(mEnv, javaByteCounts);
278 if (byteCounts.get() == NULL) {
292 iov.iov_len = byteCounts[i];
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 

Completed in 802 milliseconds