/third_party/ltp/testcases/kernel/syscalls/copy_file_range/ |
D | copy_file_range01.c | 100 static void test_one(size_t len, loff_t *off_in, loff_t *off_out, char *path) in test_one() argument 117 if (off_out) { in test_one() 118 off_out_value_copy = *off_out; in test_one() 119 sprintf(str_off_out, "%ld", (long)*off_out); in test_one() 142 off_in, off_out, len); in test_one() 150 ret |= check_file_offset("(out)", fd_out, len, off_out, off_new_out); in test_one()
|
D | copy_file_range.h | 44 int fd_out, loff_t *off_out, size_t len, unsigned int flags) in sys_copy_file_range() argument 51 fd_out, off_out, len, flags); in sys_copy_file_range() 58 off_out, len, flags); in sys_copy_file_range()
|
/third_party/e2fsprogs/lib/ext2fs/ |
D | qcow2.c | 135 __u64 off_out, void *buf, size_t count) in qcow2_copy_data() argument 141 if (ext2fs_llseek(fdout, off_out, SEEK_SET) < 0) in qcow2_copy_data() 215 __u64 off_out; in qcow2_write_raw_image() local 241 off_out = ((__u64)l1_index * img.l2_size) + in qcow2_write_raw_image() 243 off_out <<= img.cluster_bits; in qcow2_write_raw_image() 245 off_out, copy_buf, img.cluster_size); in qcow2_write_raw_image()
|
/third_party/musl/src/linux/ |
D | splice.c | 5 ssize_t splice(int fd_in, off_t *off_in, int fd_out, off_t *off_out, size_t len, unsigned flags) in splice() argument 7 return syscall(SYS_splice, fd_in, off_in, fd_out, off_out, len, flags); in splice()
|
D | copy_file_range.c | 5 ssize_t copy_file_range(int fd_in, off_t *off_in, int fd_out, off_t *off_out, size_t len, unsigned … in copy_file_range() argument 7 return syscall(SYS_copy_file_range, fd_in, off_in, fd_out, off_out, len, flags); in copy_file_range()
|
/third_party/ltp/include/lapi/ |
D | splice.h | 15 loff_t *off_out, size_t len, unsigned int flags) in splice() argument 18 fd_out, off_out, len, flags); in splice()
|
/third_party/libuv/src/unix/ |
D | linux-syscalls.c | 227 off_t* off_out, in uv__fs_copy_file_range() argument 236 off_out, in uv__fs_copy_file_range()
|
D | freebsd.c | 295 off_t* off_out, in uv__fs_copy_file_range() argument 300 return copy_file_range(fd_in, off_in, fd_out, off_out, len, flags); in uv__fs_copy_file_range()
|
D | linux-syscalls.h | 68 off_t* off_out,
|
D | internal.h | 364 off_t* off_out,
|
/third_party/glib/gio/ |
D | gfile.c | 2978 loff_t *off_out, in do_splice() argument 2986 result = splice (fd_in, off_in, fd_out, off_out, len, SPLICE_F_MORE); in do_splice()
|