Lines Matching defs:oldpath
731 int fuse_fs_rename(struct fuse_fs *fs, const char *oldpath,
736 return fs->op.rename(oldpath, newpath);
768 int fuse_fs_link(struct fuse_fs *fs, const char *oldpath, const char *newpath)
772 return fs->op.link(oldpath, newpath);
1108 static int hide_node(struct fuse *f, const char *oldpath,
1117 err = fuse_fs_rename(f->fs, oldpath, newpath);
1699 char *oldpath;
1705 oldpath = get_path_name(f, olddir, oldname);
1706 if (oldpath != NULL) {
1711 fprintf(stderr, "RENAME %s -> %s\n", oldpath, newpath);
1717 err = fuse_fs_rename(f->fs, oldpath, newpath);
1724 free(oldpath);
1735 char *oldpath;
1741 oldpath = get_path(f, ino);
1742 if (oldpath != NULL) {
1749 err = fuse_fs_link(f->fs, oldpath, newpath);
1755 free(oldpath);