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.c45 struct file *dst_file, loff_t dst_off, size_t len) in zpl_clone_file_range_impl() argument
48 struct inode *dst_i = file_inode(dst_file); in zpl_clone_file_range_impl()
94 struct file *dst_file, loff_t dst_off, size_t len, unsigned int flags) in zpl_copy_file_range() argument
104 dst_file, dst_off, len); in zpl_copy_file_range()
113 ret = generic_copy_file_range(src_file, src_off, dst_file, in zpl_copy_file_range()
122 ret = splice_copy_file_range(src_file, src_off, dst_file, in zpl_copy_file_range()
156 struct file *dst_file, loff_t dst_off, loff_t len, unsigned int flags) in zpl_remap_file_range() argument
170 dst_file, dst_off, len); in zpl_remap_file_range()
185 struct file *dst_file, loff_t dst_off, uint64_t len) in zpl_clone_file_range() argument
193 dst_file, dst_off, len); in zpl_clone_file_range()
[all …]
/freebsd/sys/contrib/openzfs/config/
H A Dkernel-vfs-file_range.m428 struct file *dst_file __attribute__ ((unused)) = NULL;
32 generic_copy_file_range(src_file, src_off, dst_file, dst_off,
54 struct file *dst_file __attribute__ ((unused)) = NULL;
57 splice_copy_file_range(src_file, src_off, dst_file, dst_off,
77 loff_t src_off, struct file *dst_file, loff_t dst_off,
80 (void) dst_file; (void) dst_off;
107 loff_t src_off, struct file *dst_file, loff_t dst_off,
110 (void) dst_file; (void) dst_off;
137 loff_t src_off, struct file *dst_file, loff_t dst_off,
140 (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/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/sys/contrib/openzfs/include/os/linux/zfs/sys/
H A Dzpl.h117 struct file *dst_file, loff_t dst_off, size_t len, unsigned int flags);
119 struct file *dst_file, loff_t dst_off, loff_t len, unsigned int flags);
121 struct file *dst_file, loff_t dst_off, uint64_t len);
123 struct file *dst_file, loff_t dst_off, uint64_t len);
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp430 FileSpec dst_file = rc_baton->dst; in RecurseCopy_Callback() local
431 if (!dst_file.GetFilename()) in RecurseCopy_Callback()
432 dst_file.SetFilename(src.GetFilename()); in RecurseCopy_Callback()
442 rc_baton->platform_ptr->CreateSymlink(dst_file, src_resolved); in RecurseCopy_Callback()
452 FileSpec dst_file = rc_baton->dst; in RecurseCopy_Callback() local
453 if (!dst_file.GetFilename()) in RecurseCopy_Callback()
454 dst_file.SetFilename(src.GetFilename()); in RecurseCopy_Callback()
455 Status err = rc_baton->platform_ptr->PutFile(src, dst_file); in RecurseCopy_Callback()