Home | History | Annotate | Download | only in src

Lines Matching refs:last_child

170    last_child:		Function to call when finished with the last child of a node's children
177 int (*last_child)(struct cil_tree_node *node, void *extra_args),
198 rc = cil_tree_walk(node, process_node, first_child, last_child, extra_args);
213 int (*last_child)(struct cil_tree_node *node, void *extra_args),
230 rc = cil_tree_walk_core(node->cl_head, process_node, first_child, last_child, extra_args);
235 if (last_child != NULL) {
236 rc = (*last_child)(node->cl_tail, extra_args);