target_stat       256 lib/common/io.c pcmk__daemon_user_can_write(const char *target_name, struct stat *target_stat)
target_stat       267 lib/common/io.c     if (target_stat->st_uid != sys_user->pw_uid) {
target_stat       270 lib/common/io.c                    target_stat->st_uid);
target_stat       273 lib/common/io.c     if ((target_stat->st_mode & (S_IRUSR | S_IWUSR)) == 0) {
target_stat       277 lib/common/io.c                    (unsigned long) target_stat->st_mode);
target_stat       284 lib/common/io.c pcmk__daemon_group_can_write(const char *target_name, struct stat *target_stat)
target_stat       296 lib/common/io.c     if (target_stat->st_gid != sys_grp->gr_gid) {
target_stat       299 lib/common/io.c                    sys_grp->gr_gid, target_stat->st_gid);
target_stat       303 lib/common/io.c     if ((target_stat->st_mode & (S_IRGRP | S_IWGRP)) == 0) {
target_stat       307 lib/common/io.c                    (unsigned long) target_stat->st_mode);