Home | History | Annotate | Download | only in src

Lines Matching refs:catorder

3270 	struct cil_catorder *catorder = NULL;
3282 cil_catorder_init(&catorder);
3284 rc = cil_fill_list(parse_current->next->cl_head, CIL_CATORDER, &catorder->cat_list_str);
3288 ast_node->data = catorder;
3296 cil_destroy_catorder(catorder);
3300 void cil_destroy_catorder(struct cil_catorder *catorder)
3302 if (catorder == NULL) {
3306 if (catorder->cat_list_str != NULL) {
3307 cil_list_destroy(&catorder->cat_list_str, 1);
3310 free(catorder);