HomeSort by relevance Sort by last modified time
    Searched refs:byteCounts (Results 1 - 11 of 11) 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);
ForwardingOs.java 127 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return os.readv(fd, buffers, offsets, byteCounts); }
166 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return os.writev(fd, buffers, offsets, byteCounts); }
Os.java 120 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException;
159 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException;
Posix.java 151 public native int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException;
226 public native int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException;
  /libcore/luni/src/main/java/android/system/
Os.java 374 public static int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.readv(fd, buffers, offsets, byteCounts); }
538 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 232 ScopedIntArrayRO byteCounts(mEnv, javaByteCounts);
233 if (byteCounts.get() == NULL) {
247 iov.iov_len = byteCounts[i];
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 682 milliseconds