Home
last modified time | relevance | path

Searched refs:offOut (Results 1 – 7 of 7) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java476 …lice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int fla… in splice() argument
481 return super.splice(fdIn, offIn, fdOut, offOut, len, flags); in splice()
DForwardingOs.java219 …eDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException { return os.splice(… in splice() argument
DOs.java187 …public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, lon… in splice() argument
DLinux.java260 …lice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int fla… in splice() argument
/libcore/luni/src/main/java/android/system/
DOs.java650 …criptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException { return Libcore.os.spl… in splice() argument
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java1290 Int64Ref offOut = new Int64Ref(0); in test_splice() local
1305 .splice(pipe[0], null /* offIn */, fdOut, offOut, 10 /* len */, 0 /* flags */); in test_splice()
1307 assertEquals(5, offOut.value); in test_splice()
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp2426 jlong offOut = (javaOffOut == NULL ? 0 : env->GetLongField(javaOffOut, int64RefValueFid)); in Linux_splice() local
2434 fdOut, (javaOffOut == NULL ? NULL : &offOut), in Linux_splice()
2457 env->SetLongField(javaOffOut, int64RefValueFid, offOut); in Linux_splice()