Lines Matching defs:attr
932 struct cil_userattribute *attr = node->data;
933 fprintf(out, "(userattribute %s)\n", datum_to_str(DATUM(attr)));
937 struct cil_userattributeset *attr = node->data;
938 fprintf(out, "(userattributeset %s ", attr->attr_str);
939 if (attr->datum_expr)
940 write_expr(out, attr->datum_expr);
942 write_expr(out, attr->str_expr);
1017 struct cil_roleattributeset *attr = node->data;
1018 fprintf(out, "(roleattributeset %s ", attr->attr_str);
1019 if (attr->datum_expr)
1020 write_expr(out, attr->datum_expr);
1022 write_expr(out, attr->str_expr);
1057 struct cil_typeattributeset *attr = node->data;
1058 fprintf(out, "(typeattributeset %s ", attr->attr_str);
1059 if (attr->datum_expr)
1060 write_expr(out, attr->datum_expr);
1062 write_expr(out, attr->str_expr);
1067 struct cil_expandtypeattribute *attr = node->data;
1069 if (attr->attr_datums)
1070 write_expr(out, attr->attr_datums);
1072 write_expr(out, attr->attr_strs);
1073 fprintf(out, " %s)\n", attr->expand ? "true" : "false");