Lines Matching defs:cps
870 struct cil_classpermissionset *cps = NULL;
888 cil_classpermissionset_init(&cps);
890 cps->set_str = parse_current->next->data;
892 rc = cil_fill_classperms_list(parse_current->next->next, &cps->classperms);
897 ast_node->data = cps;
904 cil_destroy_classpermissionset(cps);
908 void cil_destroy_classpermissionset(struct cil_classpermissionset *cps)
910 if (cps == NULL) {
914 cil_destroy_classperms_list(&cps->classperms);
916 free(cps);