Searched refs:offIn (Results 1 – 7 of 7) sorted by relevance
/libcore/luni/src/main/java/libcore/io/ |
D | BlockGuardOs.java | 476 …@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()
|
D | ForwardingOs.java | 219 …r fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoEx… in splice() argument
|
D | Os.java | 187 …public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, lon… in splice() argument
|
D | Linux.java | 260 …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 | 650 …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 | 1289 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/ |
D | libcore_io_Linux.cpp | 2425 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()
|