Symbol: _kern_open_dir
headers/build/private/kernel/syscalls.h
62
extern int _kern_open_dir(int fd, const char *path);
headers/private/system/syscalls.h
277
extern int _kern_open_dir(int fd, const char *path);
src/build/libbe/storage/Directory.cpp
143
error = set_dir_fd(_kern_open_dir(entry->fDirFd, entry->fName));
src/build/libbe/storage/Directory.cpp
165
error = set_dir_fd(_kern_open_dir(-1, path));
src/build/libbe/storage/Directory.cpp
198
error = set_dir_fd(_kern_open_dir(dir->fDirFd, path));
src/build/libbe/storage/Entry.cpp
895
dirFD = _kern_open_dir(-1, ".");
src/build/libbe/storage/Entry.cpp
911
int parentFD = _kern_open_dir(dirFD, "..");
src/build/libbe/storage/Entry.cpp
946
dirFD = _kern_open_dir(-1, cwd);
src/build/libbe/storage/Entry.cpp
955
dirFD = _kern_open_dir(-1, path);
src/build/libbe/storage/Entry.cpp
962
int parentFD = _kern_open_dir(dirFD, dirPath);
src/kits/storage/Directory.cpp
147
fDirFd = _kern_open_dir(entry->fDirFd, entry->fName);
src/kits/storage/Directory.cpp
170
fDirFd = _kern_open_dir(-1, path);
src/kits/storage/Directory.cpp
204
fDirFd = _kern_open_dir(dirFD, path);
src/kits/storage/Entry.cpp
564
dirFD = _kern_open_dir(AT_FDCWD, ".");
src/kits/storage/Entry.cpp
580
int parentFD = _kern_open_dir(dirFD, "..");
src/kits/storage/Entry.cpp
615
dirFD = _kern_open_dir(AT_FDCWD, cwd);
src/kits/storage/Entry.cpp
624
dirFD = _kern_open_dir(AT_FDCWD, path);
src/kits/storage/Entry.cpp
631
int parentFD = _kern_open_dir(dirFD, dirPath);
src/system/kernel/module.cpp
1528
int fd = _kern_open_dir(dirfd(dir), dirent->d_name);
src/system/libroot/posix/dirent.cpp
136
int dirFD = _kern_open_dir(fd, NULL);
src/system/libroot/posix/dirent.cpp
170
int fd = _kern_open_dir(AT_FDCWD, path);
src/tools/bfs_shell/command_checkfs.cpp
30
int rootDir = _kern_open_dir(-1, "/myfs");
src/tools/bfs_shell/command_resizefs.cpp
31
int rootDir = _kern_open_dir(-1, "/myfs");
src/tools/fs_shell/command_cp.cpp
652
fDir = _kern_open_dir(fd, NULL);
src/tools/fs_shell/fssh.cpp
1169
int targetDir = _kern_open_dir(-1, target);
src/tools/fs_shell/fssh.cpp
1327
int rootDir = _kern_open_dir(-1, "/myfs");
src/tools/fs_shell/fssh.cpp
528
int dir = _kern_open_dir(parentDir, name);
src/tools/fs_shell/fssh.cpp
965
int fd = _kern_open_dir(-1, file);
src/tools/fs_shell/fuse.cpp
176
int dfp = _kern_open_dir(-1, path);
src/tools/fs_shell/syscalls.h
36
int _kern_open_dir(int fd, const char *path);