_kern_open_dir
extern int _kern_open_dir(int fd, const char *path);
extern int _kern_open_dir(int fd, const char *path);
error = set_dir_fd(_kern_open_dir(entry->fDirFd, entry->fName));
error = set_dir_fd(_kern_open_dir(-1, path));
error = set_dir_fd(_kern_open_dir(dir->fDirFd, path));
dirFD = _kern_open_dir(-1, ".");
int parentFD = _kern_open_dir(dirFD, "..");
dirFD = _kern_open_dir(-1, cwd);
dirFD = _kern_open_dir(-1, path);
int parentFD = _kern_open_dir(dirFD, dirPath);
fDirFd = _kern_open_dir(entry->fDirFd, entry->fName);
fDirFd = _kern_open_dir(-1, path);
fDirFd = _kern_open_dir(dirFD, path);
dirFD = _kern_open_dir(AT_FDCWD, ".");
int parentFD = _kern_open_dir(dirFD, "..");
dirFD = _kern_open_dir(AT_FDCWD, cwd);
dirFD = _kern_open_dir(AT_FDCWD, path);
int parentFD = _kern_open_dir(dirFD, dirPath);
int fd = _kern_open_dir(dirfd(dir), dirent->d_name);
int dirFD = _kern_open_dir(fd, NULL);
int fd = _kern_open_dir(AT_FDCWD, path);
int rootDir = _kern_open_dir(-1, "/myfs");
int rootDir = _kern_open_dir(-1, "/myfs");
fDir = _kern_open_dir(fd, NULL);
int targetDir = _kern_open_dir(-1, target);
int rootDir = _kern_open_dir(-1, "/myfs");
int dir = _kern_open_dir(parentDir, name);
int fd = _kern_open_dir(-1, file);
int dfp = _kern_open_dir(-1, path);
int _kern_open_dir(int fd, const char *path);