Searched refs:newfrom (Results 1 – 2 of 2) sorted by relevance
/third_party/libfuse/lib/modules/ |
D | iconv.c | 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() [all …]
|
D | subdir.c | 259 char *newfrom; in subdir_rename() local 261 int err = subdir_addpath(d, from, &newfrom); in subdir_rename() 265 err = fuse_fs_rename(d->next, newfrom, newto, flags); in subdir_rename() 268 free(newfrom); in subdir_rename() 276 char *newfrom; in subdir_link() local 278 int err = subdir_addpath(d, from, &newfrom); in subdir_link() 282 err = fuse_fs_link(d->next, newfrom, newto); in subdir_link() 285 free(newfrom); in subdir_link()
|