Lines Matching defs:bounds
5794 struct cil_bounds *bounds = NULL;
5806 cil_bounds_init(&bounds);
5808 bounds->parent_str = parse_current->next->data;
5809 bounds->child_str = parse_current->next->next->data;
5811 ast_node->data = bounds;
5830 cil_tree_log(parse_current, CIL_ERR, "Bad bounds declaration");
5831 cil_destroy_bounds(bounds);
5835 void cil_destroy_bounds(struct cil_bounds *bounds)
5837 if (bounds == NULL) {
5841 free(bounds);