Home
last modified time | relevance | path

Searched refs:dst_file (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzpl_file_range.c46 struct file *dst_file, loff_t dst_off, size_t len) in zpl_clone_file_range_impl() argument
49 struct inode *dst_i = file_inode(dst_file); in zpl_clone_file_range_impl()
95 struct file *dst_file, loff_t dst_off, size_t len, unsigned int flags) in zpl_copy_file_range() argument
105 dst_file, dst_off, len); in zpl_copy_file_range()
114 ret = generic_copy_file_range(src_file, src_off, dst_file, in zpl_copy_file_range()
123 ret = splice_copy_file_range(src_file, src_off, dst_file, in zpl_copy_file_range()
157 struct file *dst_file, loff_t dst_off, loff_t len, unsigned int flags) in zpl_remap_file_range() argument
171 dst_file, dst_off, len); in zpl_remap_file_range()
186 struct file *dst_file, loff_t dst_off, uint64_t len) in zpl_clone_file_range() argument
194 dst_file, dst_off, len); in zpl_clone_file_range()
[all …]
/freebsd/sys/contrib/openzfs/config/
H A Dkernel-vfs-file_range.m429 struct file *dst_file __attribute__ ((unused)) = NULL;
33 generic_copy_file_range(src_file, src_off, dst_file, dst_off,
55 struct file *dst_file __attribute__ ((unused)) = NULL;
58 splice_copy_file_range(src_file, src_off, dst_file, dst_off,
78 loff_t src_off, struct file *dst_file, loff_t dst_off,
81 (void) dst_file; (void) dst_off;
108 loff_t src_off, struct file *dst_file, loff_t dst_off,
111 (void) dst_file; (void) dst_off;
138 loff_t src_off, struct file *dst_file, loff_t dst_off,
141 (void) dst_file; (void) dst_off;
/freebsd/contrib/ofed/librdmacm/examples/
H A Drcopy.c57 static char *dst_file; variable
445 len = (((uint32_t) strlen(dst_file)) + 8) & 0xFFFFFFF8; in client_open()
455 strcpy(msg->path, dst_file); in client_open()
595 dst_file = strchr(dst_addr, ':'); in client_opts()
596 if (dst_file) { in client_opts()
597 *dst_file = '\0'; in client_opts()
598 dst_file++; in client_opts()
600 if (!dst_file) in client_opts()
601 dst_file = src_file; in client_opts()
/freebsd/tests/sys/cddl/zfs/tests/acl/nontrivial/
H A Dzfs_acl_mv_001_pos.ksh79 log_must $MV ${obj[i]} $dst_file
80 dst_acl=$(get_acl $dst_file)
81 dst_mode=$(get_mode $dst_file)
145 dst_file=dstfile.${TESTCASE_ID}
/freebsd/sys/contrib/openzfs/include/os/linux/zfs/sys/
H A Dzpl.h119 struct file *dst_file, loff_t dst_off, size_t len, unsigned int flags);
121 struct file *dst_file, loff_t dst_off, loff_t len, unsigned int flags);
123 struct file *dst_file, loff_t dst_off, uint64_t len);
125 struct file *dst_file, loff_t dst_off, uint64_t len);
/freebsd/libexec/atf/atf-pytest-wrapper/
H A Datf_pytest_wrapper.cpp27 std::string dst_file; member in Handler
106 dst_file = std::string(optarg); in Parse()
161 if (!dst_file.empty()) { in BuildArgs()
162 args.push_back("--atf-file=" + dst_file); in BuildArgs()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp429 FileSpec dst_file = rc_baton->dst; in RecurseCopy_Callback() local
430 if (!dst_file.GetFilename()) in RecurseCopy_Callback()
431 dst_file.SetFilename(src.GetFilename()); in RecurseCopy_Callback()
441 rc_baton->platform_ptr->CreateSymlink(dst_file, src_resolved); in RecurseCopy_Callback()
451 FileSpec dst_file = rc_baton->dst; in RecurseCopy_Callback() local
452 if (!dst_file.GetFilename()) in RecurseCopy_Callback()
453 dst_file.SetFilename(src.GetFilename()); in RecurseCopy_Callback()
454 Status err = rc_baton->platform_ptr->PutFile(src, dst_file); in RecurseCopy_Callback()