Home
last modified time | relevance | path

Searched refs:output_file (Results 1 – 9 of 9) sorted by relevance

/qemu/target/hexagon/idef-parser/
H A Didef-parser.y843 fputs("#include \"qemu/log.h\"\n", output_file);
844 fputs("#include \"cpu.h\"\n", output_file);
845 fputs("#include \"internal.h\"\n", output_file);
846 fputs("#include \"tcg/tcg.h\"\n", output_file);
849 fputs("#include \"insn.h\"\n", output_file);
850 fputs("#include \"opcodes.h\"\n", output_file);
852 fputs("#define QEMU_GENERATE\n", output_file);
853 fputs("#include \"genptr.h\"\n", output_file);
854 fputs("#include \"macros.h\"\n", output_file);
867 context.output_file = output_file;
[all …]
H A Didef-parser.h243 FILE *output_file; /**< FILE * of the C output file */ member
H A Dparser-helpers.c262 c->output_file); in commit()
264 c->output_file); in commit()
266 c->output_file); in commit()
/qemu/scripts/
H A Dxml-preprocess.py274 with open(path, "w", encoding="utf-8") if path else sys.stdout as output_file:
275 output_file.write(xml.toprettyxml())
283 output_file = None
285 output_file = sys.argv[2]
289 save_xml(output_xml, output_file)
H A Ddecodetree.py43 output_file = None variable
134 global output_file
151 if output_file and output_fd:
153 os.remove(output_file)
1503 global output_file
1526 output_file = a
1583 elif output_file:
1584 output_fd = open(output_file, 'wt', encoding='utf-8')
1650 if output_file:
/qemu/target/hexagon/
H A Dgen_helper_protos.py59 output_file = sys.argv[-1]
60 with open(output_file, "w") as f:
H A Dgen_helper_funcs.py109 output_file = sys.argv[-1]
110 with open(output_file, "w") as f:
H A Dgen_tcg_funcs.py115 output_file = sys.argv[-1]
116 with open(output_file, "w") as f:
/qemu/scripts/modules/
H A Dmodule_block.py86 output_file = sys.argv[1] variable
87 with open(output_file, 'w') as fheader: