Lines Matching refs:newfrom
257 char *newfrom; in iconv_symlink() local
259 int err = iconv_convpath(ic, from, &newfrom, 0); in iconv_symlink()
263 err = fuse_fs_symlink(ic->next, newfrom, newto); in iconv_symlink()
266 free(newfrom); in iconv_symlink()
274 char *newfrom; in iconv_rename() local
276 int err = iconv_convpath(ic, from, &newfrom, 0); in iconv_rename()
280 err = fuse_fs_rename(ic->next, newfrom, newto, flags); in iconv_rename()
283 free(newfrom); in iconv_rename()
291 char *newfrom; in iconv_link() local
293 int err = iconv_convpath(ic, from, &newfrom, 0); in iconv_link()
297 err = fuse_fs_link(ic->next, newfrom, newto); in iconv_link()
300 free(newfrom); in iconv_link()