Home | History | Annotate | Download | only in src

Lines Matching defs:extra_args

5915 int __cil_build_ast_node_helper(struct cil_tree_node *parse_current, uint32_t *finished, void *extra_args)
5927 if (parse_current == NULL || finished == NULL || extra_args == NULL) {
5931 args = extra_args;
6318 int __cil_build_ast_last_child_helper(struct cil_tree_node *parse_current, void *extra_args)
6324 if (extra_args == NULL) {
6328 args = extra_args;
6370 struct cil_args_build extra_args;
6376 extra_args.ast = ast;
6377 extra_args.db = db;
6378 extra_args.macro = NULL;
6379 extra_args.boolif = NULL;
6380 extra_args.tunif = NULL;
6381 extra_args.in = NULL;
6383 rc = cil_tree_walk(parse_tree, __cil_build_ast_node_helper, NULL, __cil_build_ast_last_child_helper, &extra_args);