HomeSort by relevance Sort by last modified time
    Searched refs:offOut (Results 1 - 7 of 7) sorted by null

  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 401 @Override public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException {
406 return os.splice(fdIn, offIn, fdOut, offOut, len, flags);
Os.java 167 public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException;
ForwardingOs.java 180 public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException { return os.splice(fdIn, offIn, fdOut, offOut, len, flags); }
Linux.java 254 public native long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException;
  /libcore/luni/src/test/java/libcore/libcore/io/
OsTest.java     [all...]
  /libcore/luni/src/main/java/android/system/
Os.java 560 public static long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException { return Libcore.os.splice(fdIn, offIn, fdOut, offOut, len, flags); }
  /libcore/luni/src/main/native/
libcore_io_Linux.cpp     [all...]

Completed in 143 milliseconds