Home | History | Annotate | Download | only in src

Lines Matching refs:first_child

252    first_child:		Function to call before entering list of children
262 int (*first_child)(struct cil_tree_node *node, void *extra_args),
284 rc = cil_tree_walk(node, process_node, first_child, last_child, extra_args);
298 int (*first_child)(struct cil_tree_node *node, void *extra_args),
308 if (first_child != NULL) {
309 rc = (*first_child)(node->cl_head, extra_args);
316 rc = cil_tree_walk_core(node->cl_head, process_node, first_child, last_child, extra_args);