Symbol: _kern_open
headers/build/private/kernel/syscalls.h
58
extern int _kern_open(int fd, const char *path, int openMode,
headers/private/system/syscalls.h
273
extern int _kern_open(int fd, const char *path, int openMode,
src/add-ons/kernel/file_cache/launch_speedup.cpp
538
int fd = _kern_open(directoryFD, Name(), O_RDONLY, 0);
src/bin/unzip/beos.c
1111
fd = _kern_open( -1, name, O_RDONLY | O_NOTRAVERSE, 0 );
src/build/libbe/storage/File.cpp
208
int fd = _kern_open(entry->fDirFd, entry->fName, openMode,
src/build/libbe/storage/File.cpp
247
int fd = _kern_open(-1, path, openMode, DEFFILEMODE & ~__gUmask);
src/build/libbe/storage/File.cpp
289
int fd = _kern_open(dir->fDirFd, path, openMode, DEFFILEMODE & ~__gUmask);
src/build/libbe/storage/Node.cpp
551
fFd = _kern_open(fd, path, O_RDWR | O_CLOEXEC | traverseFlag, 0);
src/build/libbe/storage/Node.cpp
554
fFd = _kern_open(fd, path, O_RDONLY | O_CLOEXEC | traverseFlag, 0);
src/build/libroot/fs.cpp
1558
RETURN_AND_SET_ERRNO(_kern_open(fd, path, openMode, permissions));
src/kits/storage/File.cpp
138
int fd = _kern_open(entry->fDirFd, entry->fName, openMode | O_CLOEXEC,
src/kits/storage/File.cpp
163
int fd = _kern_open(AT_FDCWD, path, openMode, DEFFILEMODE & ~__gUmask);
src/kits/storage/File.cpp
188
int fd = _kern_open(dir->fDirFd, path, openMode, DEFFILEMODE & ~__gUmask);
src/kits/storage/Node.cpp
561
fFd = _kern_open(fd, path, O_RDWR | O_CLOEXEC | traverseFlag, 0);
src/kits/storage/Node.cpp
564
fFd = _kern_open(fd, path, O_RDONLY | O_CLOEXEC | traverseFlag, 0);
src/system/kernel/elf.cpp
1821
int fd = _kern_open(-1, path, O_RDONLY, 0);
src/system/kernel/elf.cpp
2115
int fd = _kern_open(-1, path, O_RDONLY, 0);
src/system/libroot/posix/fcntl.cpp
26
_kern_open(AT_FDCWD, path, O_CREAT | O_TRUNC | O_WRONLY, mode & ~__gUmask));
src/system/libroot/posix/fcntl.cpp
43
RETURN_AND_SET_ERRNO_TEST_CANCEL(_kern_open(AT_FDCWD, path, openMode, perms));
src/system/libroot/posix/fcntl.cpp
59
RETURN_AND_SET_ERRNO_TEST_CANCEL(_kern_open(fd, path, openMode, perms));
src/system/runtime_loader/runtime_loader.cpp
255
return _kern_open(AT_FDCWD, path, O_RDONLY, 0);
src/system/runtime_loader/runtime_loader.cpp
311
fd = _kern_open(AT_FDCWD, name, O_RDONLY, 0);
src/system/runtime_loader/runtime_loader.cpp
701
int fd = _kern_open(AT_FDCWD, path, O_RDONLY, 0);
src/tools/fs_shell/command_cp.cpp
722
int fd = _kern_open(-1, path, openMode, 0);
src/tools/fs_shell/command_cp.cpp
767
int fd = _kern_open(-1, path, FSSH_O_RDWR | FSSH_O_EXCL | FSSH_O_CREAT,
src/tools/fs_shell/command_cp.cpp
801
int fd = _kern_open(-1, path, FSSH_O_RDONLY | FSSH_O_NOTRAVERSE, 0);
src/tools/fs_shell/command_cp.cpp
834
int fd = _kern_open(-1, path, FSSH_O_RDONLY | FSSH_O_NOTRAVERSE, 0);
src/tools/fs_shell/fcntl.cpp
22
extern "C" int _kern_open(int fd, const char *path, int openMode,
src/tools/fs_shell/fcntl.cpp
47
fd = _kern_open(-1, pathname, to_platform_open_mode(oflags),
src/tools/fs_shell/fssh.cpp
436
int fd_or_error = _kern_open(-1, path, FSSH_O_CREAT, 0);
src/tools/fs_shell/fssh.cpp
740
int fd = _kern_open(-1, file, FSSH_O_RDONLY, FSSH_O_RDONLY);
src/tools/fs_shell/fuse.cpp
208
int fd = _kern_open(-1, path,
src/tools/fs_shell/fuse.cpp
298
int fd = _kern_open(-1, path, fi->flags,
src/tools/fs_shell/fuse.cpp
313
int fd = _kern_open(-1, path, FSSH_O_RDONLY,
src/tools/fs_shell/fuse.cpp
331
int fd = _kern_open(-1, path, FSSH_O_WRONLY,
src/tools/fs_shell/syscalls.h
33
int _kern_open(int fd, const char *path, int openMode, int perms);
src/tools/unzip/unix/unxcfg.h
34
extern int _kern_open(int fd, const char *path, int openMode, int perms);