Lines Matching defs:catorder
3583 struct cil_catorder *catorder = NULL;
3596 cil_catorder_init(&catorder);
3598 rc = cil_fill_list(parse_current->next->cl_head, CIL_CATORDER, &catorder->cat_list_str);
3603 cil_list_for_each(curr, catorder->cat_list_str) {
3611 ast_node->data = catorder;
3619 cil_destroy_catorder(catorder);
3623 void cil_destroy_catorder(struct cil_catorder *catorder)
3625 if (catorder == NULL) {
3629 if (catorder->cat_list_str != NULL) {
3630 cil_list_destroy(&catorder->cat_list_str, 1);
3633 free(catorder);