target_stat       274 lib/common/io.c pcmk__daemon_user_can_write(const char *target_name, struct stat *target_stat)
target_stat       285 lib/common/io.c     if (target_stat->st_uid != sys_user->pw_uid) {
target_stat       288 lib/common/io.c                    target_stat->st_uid);
target_stat       291 lib/common/io.c     if ((target_stat->st_mode & (S_IRUSR | S_IWUSR)) == 0) {
target_stat       295 lib/common/io.c                    (unsigned long) target_stat->st_mode);
target_stat       302 lib/common/io.c pcmk__daemon_group_can_write(const char *target_name, struct stat *target_stat)
target_stat       314 lib/common/io.c     if (target_stat->st_gid != sys_grp->gr_gid) {
target_stat       317 lib/common/io.c                    sys_grp->gr_gid, target_stat->st_gid);
target_stat       321 lib/common/io.c     if ((target_stat->st_mode & (S_IRGRP | S_IWGRP)) == 0) {
target_stat       325 lib/common/io.c                    (unsigned long) target_stat->st_mode);