Lines Matching refs:tmp
588 char *tmp = dfs_file_realpath(&mnt, fullpath, DFS_REALPATH_EXCEPT_LAST); in dfs_file_open() local
589 if (tmp) in dfs_file_open()
592 fullpath = tmp; in dfs_file_open()
1263 char *tmp = dfs_file_realpath(&mnt, fullpath, DFS_REALPATH_EXCEPT_NONE); in dfs_file_stat() local
1264 if (tmp) in dfs_file_stat()
1267 fullpath = tmp; in dfs_file_stat()
1332 char *tmp = dfs_file_realpath(&mnt, fullpath, DFS_REALPATH_EXCEPT_LAST); in dfs_file_lstat() local
1333 if (tmp) in dfs_file_lstat()
1336 fullpath = tmp; in dfs_file_lstat()
1441 char *tmp = dfs_file_realpath(&mnt, fullpath, DFS_REALPATH_EXCEPT_LAST); in dfs_file_setattr() local
1442 if (tmp) in dfs_file_setattr()
1445 fullpath = tmp; in dfs_file_setattr()
1696 char *tmp = dfs_file_realpath(&mnt, fullpath, DFS_REALPATH_EXCEPT_LAST); in dfs_file_unlink() local
1697 if (tmp) in dfs_file_unlink()
1700 fullpath = tmp; in dfs_file_unlink()
1816 char *tmp = dfs_file_realpath(&mnt, old_fullpath, DFS_REALPATH_EXCEPT_LAST); in dfs_file_link() local
1817 if (tmp) in dfs_file_link()
1820 old_fullpath = tmp; in dfs_file_link()
1827 char *tmp = dfs_file_realpath(&mnt, new_fullpath, DFS_REALPATH_EXCEPT_LAST); in dfs_file_link() local
1828 if (tmp) in dfs_file_link()
1831 new_fullpath = tmp; in dfs_file_link()
1943 char *tmp = dfs_file_realpath(&mnt, parent, DFS_REALPATH_EXCEPT_LAST); in dfs_file_symlink() local
1944 if (tmp) in dfs_file_symlink()
1947 parent = tmp; in dfs_file_symlink()
1962 tmp = path + strlen(parent); in dfs_file_symlink()
1963 if (*tmp == '/') in dfs_file_symlink()
1965 tmp ++; in dfs_file_symlink()
1970 tmp = path; in dfs_file_symlink()
1975 ret = mnt->fs_ops->symlink(dentry, tmp, index + 1); in dfs_file_symlink()
2048 char *tmp = dfs_file_realpath(&mnt, fullpath, DFS_REALPATH_EXCEPT_LAST); in dfs_file_readlink() local
2049 if (tmp) in dfs_file_readlink()
2052 fullpath = tmp; in dfs_file_readlink()
2130 char *tmp = dfs_file_realpath(&mnt, old_fullpath, DFS_REALPATH_EXCEPT_LAST); in dfs_file_rename() local
2131 if (tmp) in dfs_file_rename()
2134 old_fullpath = tmp; in dfs_file_rename()
2141 char *tmp = dfs_file_realpath(&mnt, new_fullpath, DFS_REALPATH_EXCEPT_LAST); in dfs_file_rename() local
2142 if (tmp) in dfs_file_rename()
2145 new_fullpath = tmp; in dfs_file_rename()
2372 char *tmp = dfs_file_realpath(&mnt, fullpath, DFS_REALPATH_EXCEPT_NONE); in dfs_file_isdir() local
2373 if (tmp) in dfs_file_isdir()
2376 fullpath = tmp; in dfs_file_isdir()
2617 … char *tmp = dfs_file_realpath(&mnt, fullpath, DFS_REALPATH_EXCEPT_LAST); in ls() local
2618 if (tmp) in ls()
2644 rt_free(tmp); in ls()