Symbol: chmod
headers/posix/sys/stat.h
112
extern int chmod(const char *path, mode_t mode);
headers/private/userlandfs/fuse/fuse.h
143
int (*chmod) (const char *, mode_t);
headers/private/userlandfs/fuse/fuse_compat.h
133
int (*chmod) (const char *, mode_t);
headers/private/userlandfs/fuse/fuse_compat.h
181
int (*chmod) (const char *, mode_t);
headers/private/userlandfs/fuse/fuse_compat.h
23
int (*chmod) (const char *, mode_t);
headers/private/userlandfs/fuse/fuse_compat.h
82
int (*chmod) (const char *, mode_t);
src/add-ons/kernel/drivers/pty/driver.cpp
413
|| chmod(path, S_IRUSR | S_IWUSR | S_IWGRP) != 0) {
src/add-ons/kernel/file_systems/netfs/server/ClientConnection.cpp
718
if (chmod(path.GetPath(), request->nodeInfo.st.st_mode) < 0)
src/add-ons/kernel/file_systems/userlandfs/server/fuse/FUSEFileSystem.cpp
545
fFS->ops.chmod != NULL || fFS->ops.chown != NULL
src/add-ons/kernel/file_systems/userlandfs/server/fuse/fuse_fs.cpp
208
if (fs->ops.chmod == NULL)
src/add-ons/kernel/file_systems/userlandfs/server/fuse/fuse_fs.cpp
210
return fs->ops.chmod(path, mode);
src/bin/network/ftpd/ftpcmd.y
733
else if (chmod($8, $6) < 0)
src/bin/network/telnetd/sys_term.c
899
(void) chmod(li, 0600);
src/bin/unzip/beos.c
467
if (chmod(G.filename, (0xffff & G.pInfo->file_attr) | 0700))
src/bin/unzip/beos.c
874
if (chmod(G.filename, 0xffff & G.pInfo->file_attr))
src/bin/unzip/beos.c
975
if (chmod(d->fn, 0xffff & d->perms)) {
src/bin/unzip/fileio.c
334
chmod(G.filename, S_IREAD | S_IWRITE);
src/bin/unzip/fileio.c
341
chmod(G.filename, 0);
src/build/libroot/fs.cpp
965
if (chmod(realPath.c_str(), st->st_mode) < 0)
src/build/libroot/fs_darwin.cpp
157
return chmod(path, mode);
src/build/libroot/fs_darwin.cpp
177
status = chmod(fullPath, mode);
src/servers/launch/InitSharedMemoryDirectoryJob.cpp
33
chmod("/var/shared_memory", 0777);
src/servers/launch/InitTemporaryDirectoryJob.cpp
33
chmod(path.Path(), 0777);
src/system/libnetwork/netresolv/dst/support.c
323
chmod(pathname, (mode_t)perm);
src/tests/add-ons/kernel/file_systems/bfs/rename/rename.c
24
if (chmod("__file", 0644) != 0)
src/tests/kits/storage/NodeInfoTest.cpp
1035
chmod(testFile4, 0755);
src/tests/kits/storage/NodeInfoTest.cpp
1037
chmod(testFile4, 0644);
src/tools/fs_shell/fuse.cpp
417
fuseOps->chmod = fuse_chmod;