target_stat       255 lib/common/io.c pcmk__daemon_user_can_write(const char *target_name, struct stat *target_stat)
target_stat       266 lib/common/io.c     if (target_stat->st_uid != sys_user->pw_uid) {
target_stat       269 lib/common/io.c                    target_stat->st_uid);
target_stat       272 lib/common/io.c     if ((target_stat->st_mode & (S_IRUSR | S_IWUSR)) == 0) {
target_stat       276 lib/common/io.c                    (unsigned long) target_stat->st_mode);
target_stat       283 lib/common/io.c pcmk__daemon_group_can_write(const char *target_name, struct stat *target_stat)
target_stat       295 lib/common/io.c     if (target_stat->st_gid != sys_grp->gr_gid) {
target_stat       298 lib/common/io.c                    sys_grp->gr_gid, target_stat->st_gid);
target_stat       302 lib/common/io.c     if ((target_stat->st_mode & (S_IRGRP | S_IWGRP)) == 0) {
target_stat       306 lib/common/io.c                    (unsigned long) target_stat->st_mode);