/bionic/libc/arch-arm/syscalls/ |
vmsplice.S | 5 ENTRY(vmsplice) function 14 END(vmsplice)
|
/bionic/libc/arch-arm64/syscalls/ |
vmsplice.S | 5 ENTRY(vmsplice) function 14 END(vmsplice)
|
/bionic/libc/arch-mips/syscalls/ |
vmsplice.S | 5 ENTRY(vmsplice) function 19 END(vmsplice)
|
/bionic/libc/arch-x86_64/syscalls/ |
vmsplice.S | 5 ENTRY(vmsplice) function 16 END(vmsplice)
|
/bionic/libc/arch-mips64/syscalls/ |
vmsplice.S | 5 ENTRY(vmsplice) function 25 END(vmsplice)
|
/bionic/libc/arch-x86/syscalls/ |
vmsplice.S | 5 ENTRY(vmsplice) function 36 END(vmsplice)
|
/bionic/libc/include/ |
fcntl.h | 82 extern ssize_t vmsplice(int, const struct iovec*, size_t, unsigned int);
|
/development/ndk/platforms/android-L/include/ |
fcntl.h | 80 extern ssize_t vmsplice(int, const struct iovec*, size_t, unsigned int);
|
/prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/ |
fcntl.h | 82 extern ssize_t vmsplice(int, const struct iovec*, size_t, unsigned int);
|
/prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/ |
fcntl.h | 82 extern ssize_t vmsplice(int, const struct iovec*, size_t, unsigned int);
|
/prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/ |
fcntl.h | 82 extern ssize_t vmsplice(int, const struct iovec*, size_t, unsigned int);
|
/prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/ |
fcntl.h | 82 extern ssize_t vmsplice(int, const struct iovec*, size_t, unsigned int);
|
/prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/ |
fcntl.h | 82 extern ssize_t vmsplice(int, const struct iovec*, size_t, unsigned int);
|
/prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/ |
fcntl.h | 82 extern ssize_t vmsplice(int, const struct iovec*, size_t, unsigned int);
|
/bionic/tests/ |
fcntl_test.cpp | 177 TEST(fcntl, vmsplice) { 186 ssize_t bytes_written = vmsplice(pipe_fds[1], v, sizeof(v)/sizeof(iovec), 0);
|
/external/fio/engines/ |
splice.c | 25 * vmsplice didn't use to support splicing to user space, this is the old 70 * We can now vmsplice into userspace, so do the transfer by splicing into 122 ret = vmsplice(sd->pipe[0], &iov, 1, SPLICE_F_MOVE); 137 td_verror(td, errno, "vmsplice"); 140 td_verror(td, ENODATA, "vmsplice"); 164 * For splice writing, we can vmsplice our data buffer directly into a 183 ret = vmsplice(sd->pipe[1], &iov, 1, SPLICE_F_NONBLOCK); 213 * This kernel doesn't support vmsplice to user 275 * Works with "real" vmsplice to user, eg mapping pages directly.
|
net.c | 305 int ret = vmsplice(fd, &iov, 1, SPLICE_F_MOVE); 324 * vmsplice() pipe to io_u buffer 335 * vmsplice() io_u to pipe 346 * that pipe data into the io_u using vmsplice. 360 * splice transmit - map data from the io_u into a pipe by using vmsplice,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/ |
fcntl.h | 235 /* Flags for SPLICE and VMSPLICE. */ 272 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/ |
fcntl.h | 235 /* Flags for SPLICE and VMSPLICE. */ 272 extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
|
/external/chromium_org/components/nacl/loader/nonsfi/ |
nonsfi_sandbox_sigsys_unittest.cc | 599 RESTRICT_SYSCALL_DEATH_TEST(vmsplice);
|