| /freebsd-14.2/tests/sys/fs/fusefs/ |
| H A D | copy_file_range.cc | 173 in.body.copy_file_range.fh_in == fh1 && in TEST_F() 176 in.body.copy_file_range.fh_out == fh2 && in TEST_F() 179 in.body.copy_file_range.flags == 0); in TEST_F() 225 in.body.copy_file_range.fh_in == fh1 && in TEST_F() 231 in.body.copy_file_range.flags == 0); in TEST_F() 309 in.body.copy_file_range.flags == 0); in TEST_F() 518 in.body.copy_file_range.flags == 0); in TEST_F() 559 in.body.copy_file_range.flags == 0); in TEST_F() 609 in.body.copy_file_range.flags == 0); in TEST_F() 669 in.body.copy_file_range.flags == 0); in TEST_F() [all …]
|
| H A D | io.cc | 204 in.body.copy_file_range.nodeid_out == ino && in SetUp() 205 in.body.copy_file_range.flags == 0); in SetUp() 209 off_t off_in = in.body.copy_file_range.off_in; in SetUp() 210 off_t off_out = in.body.copy_file_range.off_out; in SetUp() 211 ASSERT_EQ((ssize_t)in.body.copy_file_range.len, in SetUp() 212 copy_file_range(m_backing_fd, &off_in, m_backing_fd, in SetUp() 213 &off_out, in.body.copy_file_range.len, 0)); in SetUp() 215 out.body.write.size = in.body.copy_file_range.len; in SetUp() 263 r = copy_file_range(m_test_fd, &test_off_in, m_test_fd, in do_copy_file_range() 269 r = copy_file_range(m_control_fd, &control_off_in, m_control_fd, in do_copy_file_range()
|
| H A D | mockfs.cc | 187 in.body.copy_file_range.off_in, in debug_request() 188 in.body.copy_file_range.nodeid_out, in debug_request() 189 in.body.copy_file_range.off_out, in debug_request() 190 in.body.copy_file_range.len); in debug_request() 194 in.body.copy_file_range.fh_in, in debug_request() 195 in.body.copy_file_range.fh_out, in debug_request() 196 in.body.copy_file_range.flags); in debug_request() 728 EXPECT_EQ(inlen, fih + sizeof(in.body.copy_file_range)); in audit_request() 729 EXPECT_EQ(0ul, in.body.copy_file_range.flags); in audit_request()
|
| H A D | last_local_modify.cc | 141 r = copy_file_range(fd, &off_in, fd, &off_out, len, 0); in copy_file_range_th() 261 mutator_size = in.body.copy_file_range.len; in TEST_P() 456 out1->body.write.size = in.body.copy_file_range.len; in TEST_P()
|
| H A D | Makefile | 16 GTESTS+= copy_file_range
|
| H A D | default_permissions.cc | 117 in.body.copy_file_range.off_in == off_in && in expect_copy_file_range() 118 in.body.copy_file_range.nodeid_out == ino_out && in expect_copy_file_range() 119 in.body.copy_file_range.off_out == off_out && in expect_copy_file_range() 120 in.body.copy_file_range.len == len); in expect_copy_file_range() 534 copy_file_range(fd_in, &off_in, fd_out, &off_out, len, 0)) in TEST_F() 578 copy_file_range(fd_in, &off_in, fd_out, &off_out, len, 0)) in TEST_F()
|
| H A D | mockfs.hh | 158 fuse_copy_file_range_in copy_file_range; member
|
| /freebsd-14.2/sys/contrib/openzfs/config/ |
| H A D | kernel-vfs-extended-file_range.m4 | 2 dnl # EL7 have backported copy_file_range and clone_file_range and 34 .copy_file_range = test_copy_file_range, 41 .copy_file_range() and .clone_file_range()]) 45 [file_operations_extend takes .copy_file_range()
|
| H A D | kernel-vfs-file_range.m4 | 7 dnl # 4.5: copy_file_range() syscall introduced, added to VFS 16 dnl # 5.3: VFS copy_file_range() expected to do its own fallback, 37 .copy_file_range = test_copy_file_range, 42 AC_MSG_CHECKING([whether fops->copy_file_range() is available]) 46 [fops->copy_file_range() is available])
|
| /freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/cmd/ |
| H A D | clone_mmap_write.c | 49 copy_file_range(int, loff_t *, int, loff_t *, size_t, unsigned int) 74 if (copy_file_range(sfd, 0, dfd, 0, size, 0) < 0) { in clone_file()
|
| H A D | clone_mmap_cached.c | 43 copy_file_range(int, loff_t *, int, loff_t *, size_t, unsigned int) 139 if (copy_file_range(sfd, &soff, dfd, &doff, ssize, 0) < 0) { in main()
|
| H A D | clonefile.c | 67 copy_file_range(int, loff_t *, int, loff_t *, size_t, unsigned int) 74 if (copy_file_range) in cf_copy_file_range() 75 return (copy_file_range(sfd, soff, dfd, doff, len, flags)); in cf_copy_file_range()
|
| /freebsd-14.2/include/ |
| H A D | unistd.h | 497 ssize_t copy_file_range(int, off_t *, int, off_t *, size_t, unsigned int);
|
| /freebsd-14.2/bin/cat/ |
| H A D | cat.c | 403 ret = copy_file_range(rfd, NULL, wfd, NULL, SSIZE_MAX, 0); in in_kernel_copy()
|
| /freebsd-14.2/bin/cp/ |
| H A D | utils.c | 206 wcount = copy_file_range(from_fd, NULL, in copy_file()
|
| /freebsd-14.2/tests/sys/file/ |
| H A D | path_test.c | 722 copy_file_range(fd, NULL, pathfd, NULL, sizeof(buf), 0) == -1); in ATF_TC_BODY() 724 copy_file_range(pathfd, NULL, fd, NULL, sizeof(buf), 0) == -1); in ATF_TC_BODY()
|
| /freebsd-14.2/sys/contrib/openzfs/module/os/linux/zfs/ |
| H A D | zpl_file.c | 1346 .copy_file_range = zpl_copy_file_range, 1366 .copy_file_range = zpl_copy_file_range,
|
| /freebsd-14.2/lib/libc/sys/ |
| H A D | Makefile.inc | 186 copy_file_range.2 \
|
| H A D | Symbol.map | 406 copy_file_range;
|
| /freebsd-14.2/sys/sys/ |
| H A D | syscall.mk | 414 copy_file_range.o \
|
| /freebsd-14.2/sys/kern/ |
| H A D | vnode_if.src | 790 %% copy_file_range invp U U U 791 %% copy_file_range outvp U U U
|
| /freebsd-14.2/usr.bin/xinstall/ |
| H A D | xinstall.c | 1212 ret = copy_file_range(from_fd, NULL, to_fd, NULL, in copy()
|