Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java476 …@Override public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref o… in splice() argument
481 return super.splice(fdIn, offIn, fdOut, offOut, len, flags); in splice()
DForwardingOs.java219 …r fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoEx… in splice() argument
DOs.java187 …public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, lon… in splice() argument
DLinux.java260 …public native long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offO… in splice() argument
/libcore/luni/src/main/java/android/system/
DOs.java650 …In, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoExcept… in splice() argument
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java1289 Int64Ref offIn = new Int64Ref(1); in test_splice() local
1296 .splice(fdIn, offIn, pipe[1], null /* offOut */, 10 /* len */, 0 /* flags */); in test_splice()
1298 assertEquals(6, offIn.value); in test_splice()
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp2425 jlong offIn = (javaOffIn == NULL ? 0 : env->GetLongField(javaOffIn, int64RefValueFid)); in Linux_splice() local
2433 ret = splice(fdIn, (javaOffIn == NULL ? NULL : &offIn), in Linux_splice()
2454 env->SetLongField(javaOffIn, int64RefValueFid, offIn); in Linux_splice()