Lines Matching defs:path
67 * path -- the directory to open
80 * ENOTDIR - 'path' is not a directory.
84 DIR *opendir(const char *path)
90 /* Find the node matching the path. */
92 ret = VnodeLookup(path, &vp, 0);
101 PRINT_ERR("opendir (%s) failed, err=%d\n", path, ret);
154 int do_opendir(const char *path, int oflags)
164 if (path == NULL || *path == 0)
176 ret = vfs_normalize_path((const char *)relativepath, path, &fullpath);
188 ret = VnodeLookup(path, &vp, 0);
219 /* Open the directory at the relative path */