Lines Matching refs:stat
719 struct tomoyo_mini_stat *stat = &obj->stat[i]; in tomoyo_get_attributes() local
720 stat->uid = inode->i_uid; in tomoyo_get_attributes()
721 stat->gid = inode->i_gid; in tomoyo_get_attributes()
722 stat->ino = inode->i_ino; in tomoyo_get_attributes()
723 stat->mode = inode->i_mode; in tomoyo_get_attributes()
724 stat->dev = inode->i_sb->s_dev; in tomoyo_get_attributes()
725 stat->rdev = inode->i_rdev; in tomoyo_get_attributes()
924 struct tomoyo_mini_stat *stat; in tomoyo_condition() local
967 stat = &obj->stat[stat_index]; in tomoyo_condition()
973 value = from_kuid(&init_user_ns, stat->uid); in tomoyo_condition()
979 value = from_kgid(&init_user_ns, stat->gid); in tomoyo_condition()
985 value = stat->ino; in tomoyo_condition()
989 value = MAJOR(stat->dev); in tomoyo_condition()
993 value = MINOR(stat->dev); in tomoyo_condition()
997 value = stat->mode & S_IFMT; in tomoyo_condition()
1001 value = MAJOR(stat->rdev); in tomoyo_condition()
1005 value = MINOR(stat->rdev); in tomoyo_condition()
1011 value = stat->mode & S_IALLUGO; in tomoyo_condition()