Lines Matching refs:fullpath
113 char *fullpath; in openat() local
122 fullpath = (char*)path; in openat()
135 fullpath = dfs_dentry_full_path(d->dentry); in openat()
136 if (!fullpath) in openat()
144 fd = open(fullpath, flag, 0); in openat()
146 if (fullpath != path) in openat()
148 rt_free(fullpath); in openat()
159 char *fullpath; in utimensat() local
178 fullpath = (char*)__path; in utimensat()
191 fullpath = dfs_dentry_full_path(d->dentry); in utimensat()
192 if (!fullpath) in utimensat()
229 if (dfs_file_lstat(fullpath, &buffer) == 0) in utimensat()
235 err = dfs_file_readlink(fullpath, link_fn, DFS_PATH_MAX); in utimensat()
243 fullpath = link_fn; in utimensat()
244 if (dfs_file_stat(fullpath, &buffer) != 0) in utimensat()
255 ret = dfs_file_setattr(fullpath, &attr); in utimensat()
1185 char *fullpath; in chdir() local
1207 fullpath = dfs_normalize_path(NULL, path); in chdir()
1208 if (fullpath == NULL) in chdir()
1216 d = opendir(fullpath); in chdir()
1219 rt_free(fullpath); in chdir()
1231 lwp_setcwd(fullpath); in chdir()
1233 rt_strncpy(working_directory, fullpath, DFS_PATH_MAX); in chdir()
1236 rt_free(fullpath); in chdir()