Home
last modified time | relevance | path

Searched refs:S_IWGRP (Results 1 – 24 of 24) sorted by relevance

/base/hiviewdfx/hiview/base/utility/include/
Dfile_util.h32 #define S_IWGRP 00020 macro
52 constexpr mode_t DEFAULT_FILE_MODE = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH; // -rw-rw-r--
56 constexpr mode_t FILE_PERM_660 = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP;
57 constexpr mode_t FILE_PERM_666 = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH;
Dcommon_utils.h27 static constexpr mode_t DEFAULT_FILE_MODE = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH; // -rw…
/base/startup/init/services/init/standard/
Ddevice.c27 #define DEFAULT_RW_MODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)
92 …en("/proc/sys/kernel/printk_devkmsg", O_WRONLY | O_CLOEXEC, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); in EnableDevKmsg()
Dinit.c82 mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH; in FdHolderSockInit()
/base/startup/init/ueventd/include/
Dueventd_utils.h33 #define DEVMODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP)
/base/startup/init/interfaces/innerkits/control_fd/
Dcontrol_fd.h34 #define CONTROL_FD_FIFO_MODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)
Dcontrol_fd_client.c171 BEGET_ERROR_CHECK(chmod(ptsbuffer, S_IRWXU | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH) == 0, in InitPtyInterface()
/base/security/appverify/interfaces/innerkits/appverify_lite/unittest/src/
Dwrite_file.cpp41 …int32_t in = open(dest, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IR… in CopyFile()
/base/hiviewdfx/hiview/base/
Daudit.cpp102 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH)); in Init()
199 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH)); in SwitchActiveFile()
/base/hiviewdfx/faultloggerd/common/dfxlog/
Ddfx_log.cpp47 g_dmesgFd = open("/dev/kmsg", O_WRONLY, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); in LogToDmesg()
/base/startup/init/services/loopevent/socket/
Dle_socket.c54 mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP; in CreatePipeServerSocket_()
222 ret = chmod(server, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH); in listenSocket()
/base/startup/init/services/etc/param/
Dparam_fixer.py71 modes = stat.S_IWUSR | stat.S_IRUSR | stat.S_IWGRP | stat.S_IRGRP
/base/startup/init/ueventd/
Dueventd.c126 #define DEFAULT_RW_MODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)
139 { DEV_NODE_PATH_PREFIX"console", S_IFCHR | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP },
/base/startup/init/services/log/
Dinit_log.c66 int fd = open("/dev/kmsg", O_WRONLY | O_CLOEXEC, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); in OpenLogDevice()
/base/startup/init/services/modules/seccomp/scripts/tools/
Daudit_log_analysis.py76 modes = stat.S_IWUSR | stat.S_IRUSR | stat.S_IWGRP | stat.S_IRGRP
Dcollect_elf_syscall.py47 modes = stat.S_IWUSR | stat.S_IRUSR | stat.S_IWGRP | stat.S_IRGRP
/base/hiviewdfx/hilog/services/hilogd/
Dmain.cpp124 int fd = open(path, mask, S_IWUSR | S_IWGRP); in RedirectStdStreamToLogFile()
/base/msdp/device_status/utils/common/src/
Dutility.cpp158 … {S_IWGRP, "G+W "}, {S_IXGRP, "G+X "}, {S_IROTH, "O+R "}, {S_IWOTH, "O+W "}, {S_IXOTH, "O+X "}}; in ShowFileAttributes()
/base/startup/init/test/unittest/init/
Dcmds_unittest.cpp168 …int fd = open(testFile1, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWO…
/base/startup/appspawn/etc/sandbox/
Dappdata_sandbox_fixer.py232 modes = stat.S_IWUSR | stat.S_IRUSR | stat.S_IWGRP | stat.S_IRGRP
/base/hiviewdfx/hilog/frameworks/libhilog/
Dhilog_printf.cpp198 static int fd = open("/dev/kmsg", O_WRONLY, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); in LogToKmsg()
/base/startup/init/test/unittest/ueventd/
Dueventd_event_unittest.cpp60 int ret = mkdir(g_testRoot.c_str(), S_IRWXU | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH); in SetUpTestCase()
/base/startup/init/services/modules/seccomp/scripts/
Dgenerate_code_from_policy.py999 modes = stat.S_IWUSR | stat.S_IRUSR | stat.S_IWGRP | stat.S_IRGRP
/base/startup/appspawn/util/src/
Dsandbox_utils.cpp208 … {"S_IRGRP", S_IRGRP}, {"S_IWGRP", S_IWGRP}, {"S_IXGRP", S_IXGRP}, in DoSandboxChmod()