Searched refs:offIn (Results 1 – 7 of 7) sorted by relevance
/libcore/luni/src/main/java/libcore/io/ |
D | BlockGuardOs.java | 478 …@Override public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref o… in splice() argument 483 return super.splice(fdIn, offIn, fdOut, offOut, len, flags); in splice()
|
D | ForwardingOs.java | 218 …r fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoEx… in splice() argument
|
D | Os.java | 186 …public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, lon… in splice() argument
|
D | Linux.java | 259 …public native long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offO… in splice() argument
|
/libcore/luni/src/main/java/android/system/ |
D | Os.java | 653 …In, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoExcept… in splice() argument
|
/libcore/luni/src/test/java/libcore/android/system/ |
D | OsTest.java | 1388 Int64Ref offIn = new Int64Ref(1); in test_splice() local 1395 .splice(fdIn, offIn, pipe[1], null /* offOut */, 10 /* len */, 0 /* flags */); in test_splice() 1397 assertEquals(6, offIn.value); in test_splice()
|
/libcore/luni/src/main/native/ |
D | libcore_io_Linux.cpp | 2428 jlong offIn = (javaOffIn == NULL ? 0 : env->GetLongField(javaOffIn, int64RefValueFid)); in Linux_splice() local 2436 ret = splice(fdIn, (javaOffIn == NULL ? NULL : &offIn), in Linux_splice() 2457 env->SetLongField(javaOffIn, int64RefValueFid, offIn); in Linux_splice()
|