Lines Matching defs:tree
168 int cil_tree_init(struct cil_tree **tree)
174 *tree = new_tree;
179 void cil_tree_destroy(struct cil_tree **tree)
181 if (tree == NULL || *tree == NULL) {
185 cil_tree_subtree_destroy((*tree)->root);
186 free(*tree);
187 *tree = NULL;
251 /* Perform depth-first walk of the tree
257 finished: boolean indicating to the tree walker that it should move on from this branch