Searched refs:offIn (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java401 @Override public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException { argument
406 return os.splice(fdIn, offIn, fdOut, offOut, len, flags);
H A DOs.java167 public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException; argument
H A DForwardingOs.java180 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); } argument
H A DLinux.java254 public native long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException; argument
/libcore/luni/src/test/java/libcore/libcore/io/
H A DOsTest.java950 Int64Ref offIn = new Int64Ref(1);
956 long result = Libcore.os.splice(fdIn, offIn, pipe[1], null /* offOut */ , 10 /* len */, 0 /* flags */);
958 assertEquals(6, offIn.value);
964 long result = Libcore.os.splice(pipe[0], null /* offIn */, fdOut, offOut, 10 /* len */, 0 /* flags */);
982 Libcore.os.splice(null /* fdIn */, null /* offIn */, pipe[1],
991 Libcore.os.splice(pipe[0] /* fdIn */, null /* offIn */, null /* fdOut */,
1003 Libcore.os.splice(fdIn, null /* offIn */, fdOut, null /* offOut */, 10 /* len */, 0 /* flags */);
/libcore/luni/src/main/java/android/system/
H A DOs.java560 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); } argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Linux.cpp2312 jlong offIn = (javaOffIn == NULL ? 0 : env->GetLongField(javaOffIn, int64RefValueFid)); local
2320 ret = splice(fdIn, (javaOffIn == NULL ? NULL : &offIn),
2341 env->SetLongField(javaOffIn, int64RefValueFid, offIn);

Completed in 101 milliseconds