Home
last modified time | relevance | path

Searched refs:path_in (Results 1 – 6 of 6) sorted by relevance

/third_party/musl/libc-test/src/functionalext/supplement/linux/
Dcopy_file_range.c33 char path_in[PATH_MAX] = {0}; in copy_file_range_0100() local
35 FILE_ABSOLUTE_PATH(STR_FILE_IN_TXT, path_in); in copy_file_range_0100()
38 fd_in = open(path_in, O_RDWR | O_CREAT, TEST_MODE); in copy_file_range_0100()
51 fd_in = open(path_in, O_RDONLY); in copy_file_range_0100()
81 remove(path_in); in copy_file_range_0100()
112 char path_in[PATH_MAX] = {0}; in copy_file_range_0300() local
114 FILE_ABSOLUTE_PATH(STR_FILE_IN_TXT, path_in); in copy_file_range_0300()
117 fd_in = open(path_in, O_WRONLY | O_CREAT, TEST_MODE); in copy_file_range_0300()
130 fd_in = open(path_in, O_WRONLY); in copy_file_range_0300()
149 remove(path_in); in copy_file_range_0300()
/third_party/ltp/testcases/kernel/syscalls/copy_file_range/
Dcopy_file_range.h63 static inline int verify_cross_fs_copy_support(const char *path_in, const char *path_out) in verify_cross_fs_copy_support() argument
67 fd = SAFE_OPEN(path_in, O_RDWR | O_CREAT, 0664); in verify_cross_fs_copy_support()
/third_party/libfuse/example/
Dpassthrough.c446 static ssize_t xmp_copy_file_range(const char *path_in, in xmp_copy_file_range() argument
456 fd_in = open(path_in, O_RDONLY); in xmp_copy_file_range()
Dpassthrough_fh.c576 static ssize_t xmp_copy_file_range(const char *path_in, in xmp_copy_file_range() argument
583 (void) path_in; in xmp_copy_file_range()
/third_party/libfuse/include/
Dfuse.h818 ssize_t (*copy_file_range) (const char *path_in,
1265 ssize_t fuse_fs_copy_file_range(struct fuse_fs *fs, const char *path_in,
/third_party/libfuse/lib/
Dfuse.c2315 ssize_t fuse_fs_copy_file_range(struct fuse_fs *fs, const char *path_in, in fuse_fs_copy_file_range() argument
2326 path_in, in fuse_fs_copy_file_range()
2332 return fs->op.copy_file_range(path_in, fi_in, off_in, path_out, in fuse_fs_copy_file_range()
4323 char *path_in, *path_out; in fuse_lib_copy_file_range() local
4327 err = get_path_nullok(f, nodeid_in, &path_in); in fuse_lib_copy_file_range()
4335 free_path(f, nodeid_in, path_in); in fuse_lib_copy_file_range()
4341 res = fuse_fs_copy_file_range(f->fs, path_in, fi_in, off_in, path_out, in fuse_lib_copy_file_range()
4350 free_path(f, nodeid_in, path_in); in fuse_lib_copy_file_range()