Searched refs:path_in (Results 1 – 6 of 6) sorted by relevance
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
D | copy_file_range.c | 33 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/ |
D | copy_file_range.h | 63 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/ |
D | passthrough.c | 446 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()
|
D | passthrough_fh.c | 576 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/ |
D | fuse.h | 818 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/ |
D | fuse.c | 2315 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()
|