Home | History | Annotate | Download | only in src

Lines Matching defs:extra_args

15 static int __cil_write_first_child_helper(struct cil_tree_node *node, void *extra_args);
16 static int __cil_write_node_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args);
17 static int __cil_write_last_child_helper(struct cil_tree_node *node, void *extra_args);
434 struct cil_args_write *extra_args) {
436 FILE *cil_out = extra_args->cil_out;
452 extra_args);
1134 static int __cil_write_first_child_helper(struct cil_tree_node *node, void *extra_args)
1137 struct cil_args_write *args = (struct cil_args_write *) extra_args;
1140 if (node == NULL || extra_args == NULL) {
1153 static int __cil_write_node_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args)
1160 if (node == NULL || extra_args == NULL) {
1164 args = extra_args;
1194 rc = cil_write_class(node, finished, extra_args);
1197 rc = cil_write_class(node, finished, extra_args);
1462 static int __cil_write_last_child_helper(struct cil_tree_node *node, void *extra_args)
1469 if (node == NULL || extra_args == NULL) {
1473 args = extra_args;
1488 struct cil_args_write extra_args;
1498 extra_args.cil_out = cil_out;
1499 extra_args.db = db;
1503 &extra_args);