Symbol: S_IWGRP
headers/build/BeOSBuildCompatibility.h
6
#define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
headers/build/HaikuBuildCompatibility.h
49
# define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
headers/posix/sys/stat.h
101
#define DEFFILEMODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)
src/add-ons/kernel/drivers/pty/driver.cpp
413
|| chmod(path, S_IRUSR | S_IWUSR | S_IWGRP) != 0) {
src/add-ons/kernel/file_systems/exfat/Inode.cpp
139
mode |= S_IWUSR | S_IWGRP | S_IWOTH;
src/add-ons/kernel/file_systems/fat/kernel_interface.cpp
2069
if ((perms & (S_IWUSR | S_IWGRP | S_IWOTH)) == 0)
src/add-ons/kernel/file_systems/fat/kernel_interface.cpp
2554
if ((perms & (S_IWUSR | S_IWGRP | S_IWOTH)) == 0)
src/add-ons/kernel/file_systems/iso9660/kernel_interface.cpp
389
& ~(S_IWUSR | S_IWGRP | S_IWOTH);
src/add-ons/kernel/file_systems/layers/attribute_overlay/attribute_overlay.cpp
619
| S_IWGRP | S_IROTH | S_IWOTH, &attrFileCookie,
src/add-ons/kernel/file_systems/ntfs/libntfs/acls.c
2517
if (mode & (S_IWGRP | S_IWOTH))
src/add-ons/kernel/file_systems/ntfs/libntfs/acls.c
2525
if (mode & (S_IWGRP | S_IWOTH))
src/add-ons/kernel/file_systems/ntfs/libntfs/acls.c
2535
if ((mode & S_IWOTH) && !(mode & S_IWGRP))
src/add-ons/kernel/file_systems/ntfs/libntfs/acls.c
2543
if ((mode & S_IWOTH) && !(mode & S_IWGRP))
src/add-ons/kernel/file_systems/ntfs/libntfs/acls.c
2598
if (mode & S_IWGRP)
src/add-ons/kernel/file_systems/ntfs/libntfs/acls.c
2606
if (mode & S_IWGRP)
src/add-ons/kernel/file_systems/ntfs/libntfs/acls.c
2983
perm |= S_IWGRP;
src/add-ons/kernel/file_systems/ntfs/libntfs/acls.c
2993
perm |= S_IWGRP;
src/add-ons/kernel/file_systems/ntfs/libntfs/security.c
3481
allow = (perm & (S_IWUSR | S_IWGRP | S_IWOTH)) != 0;
src/add-ons/kernel/file_systems/ntfs/libntfs/security.c
3484
allow = ((perm & (S_IWUSR | S_IWGRP | S_IWOTH)) != 0)
src/add-ons/kernel/file_systems/ntfs/libntfs/security.c
3496
&& ((perm & (S_IWUSR | S_IWGRP | S_IWOTH)) != 0);
src/add-ons/kernel/file_systems/ntfs/libntfs/security.c
3506
allow = ((perm & (S_IWUSR | S_IWGRP | S_IWOTH)) != 0)
src/add-ons/kernel/file_systems/ntfs/libntfs/security.c
3511
&& ((perm & (S_IWUSR | S_IWGRP | S_IWOTH)) != 0)
src/add-ons/kernel/file_systems/ntfs/libntfs/security.c
3557
allow = ((perm & (S_IWUSR | S_IWGRP | S_IWOTH)) != 0)
src/add-ons/kernel/file_systems/packagefs/package/Package.cpp
137
mode_t mode = entry->Mode() & ~(mode_t)(S_IWUSR | S_IWGRP | S_IWOTH);
src/apps/stylededit/StyledEditWindow.cpp
1562
|| (getgid() == st.st_gid && S_IWGRP & st.st_mode)
src/apps/stylededit/StyledEditWindow.cpp
839
|| (getgid() == st.st_gid && (S_IWGRP & st.st_mode))
src/bin/debug/time_stats/time_stats.cpp
101
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP| S_IROTH | S_IWOTH);
src/build/libroot/fs.cpp
1366
if ((st.st_mode & S_IWGRP) != 0)
src/build/libroot/fs_darwin.cpp
86
if ((st.st_mode & S_IWGRP) != 0)
src/kits/tracker/infowindow/FilePermissionsView.cpp
252
fWriteGroupCheckBox->SetValue((int32)(perms & S_IWGRP));
src/kits/tracker/infowindow/FilePermissionsView.cpp
332
| (fWriteGroupCheckBox->Value() ? S_IWGRP : 0)
src/system/boot/loader/file_systems/packagefs/packagefs.cpp
412
mode_t mode = entry->Mode() & ~(mode_t)(S_IWUSR | S_IWGRP | S_IWOTH);
src/system/kernel/posix/realtime_sem.cpp
117
if (gid == fGID && (fPermissions & S_IWGRP) != 0)
src/system/kernel/posix/xsi_message_queue.cpp
157
&& (fMessageQueue.msg_perm.mode & S_IWGRP) != 0)
src/system/kernel/posix/xsi_semaphore.cpp
285
if (gid == fPermissions.gid && (fPermissions.mode & S_IWGRP) != 0)
src/tests/system/kernel/file_corruption/fs/checksumfs.cpp
1907
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH, transaction,
src/tests/system/libroot/posix/xsi_msg_queue_test1.cpp
100
| S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
src/tests/system/libroot/posix/xsi_msg_queue_test1.cpp
145
| S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
src/tests/system/libroot/posix/xsi_msg_queue_test1.cpp
191
| S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
src/tests/system/libroot/posix/xsi_msg_queue_test1.cpp
57
| S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
src/tests/system/libroot/posix/xsi_msg_queue_test1.cpp
78
| S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
src/tests/system/libroot/posix/xsi_sem_test1.cpp
175
| S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
src/tests/system/libroot/posix/xsi_sem_test1.cpp
235
| S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
src/tests/system/libroot/posix/xsi_sem_test1.cpp
61
| S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
src/tests/system/libroot/posix/xsi_sem_test1.cpp
82
| S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
src/tools/fs_shell/stat_util.cpp
138
SET_ST_MODE_BIT(FSSH_S_IWGRP, S_IWGRP);
src/tools/fs_shell/stat_util.cpp
76
SET_ST_MODE_BIT(FSSH_S_IWGRP, S_IWGRP);