Lines Matching refs:fullpath
223 char *fullpath = NULL; in dfs_mount() local
264 fullpath = dfs_normalize_path(NULL, path); in dfs_mount()
265 if (fullpath == NULL) /* not an abstract path */ in dfs_mount()
272 if ((strcmp(fullpath, "/") != 0) && (strcmp(fullpath, "/dev") != 0)) in dfs_mount()
277 if (dfs_file_open(&fd, fullpath, O_RDONLY | O_DIRECTORY) < 0) in dfs_mount()
279 rt_free(fullpath); in dfs_mount()
313 fs->path = fullpath; in dfs_mount()
355 rt_free(fullpath); in dfs_mount()
369 char *fullpath; in dfs_unmount() local
373 fullpath = dfs_normalize_path(NULL, specialfile); in dfs_unmount()
374 if (fullpath == NULL) in dfs_unmount()
388 if ((iter->path != NULL) && (strcmp(iter->path, fullpath) == 0)) in dfs_unmount()
413 rt_free(fullpath); in dfs_unmount()
419 rt_free(fullpath); in dfs_unmount()