Searched refs:offOut (Results 1 – 7 of 7) sorted by relevance
/libcore/luni/src/main/java/libcore/io/ |
D | BlockGuardOs.java | 476 …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()
|
D | ForwardingOs.java | 219 …eDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException { return os.splice(… 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 …lice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int fla… in splice() argument
|
/libcore/luni/src/main/java/android/system/ |
D | Os.java | 650 …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/ |
D | OsTest.java | 1290 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/ |
D | libcore_io_Linux.cpp | 2426 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()
|