Searched refs:newfrom (Results 1 – 2 of 2) sorted by relevance
/external/libfuse/lib/modules/ |
D | iconv.c | 256 char *newfrom; in iconv_symlink() local 258 int err = iconv_convpath(ic, from, &newfrom, 0); in iconv_symlink() 262 err = fuse_fs_symlink(ic->next, newfrom, newto); in iconv_symlink() 265 free(newfrom); in iconv_symlink() 273 char *newfrom; in iconv_rename() local 275 int err = iconv_convpath(ic, from, &newfrom, 0); in iconv_rename() 279 err = fuse_fs_rename(ic->next, newfrom, newto, flags); in iconv_rename() 282 free(newfrom); in iconv_rename() 290 char *newfrom; in iconv_link() local 292 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()
|