Lines Matching refs:output_file
26 std::cerr << "ark_disasm [options] input_file output_file" << std::endl << std::endl;
31 void Disassemble(const std::string &input_file, const std::string &output_file, const bool verbose, const bool quiet,
45 res_pa.open(output_file, std::ios::trunc | std::ios::out);
51 const panda::PandArg<std::string> &output_file, panda::PandArg<bool> &debug,
66 if (input_file.GetValue().empty() || output_file.GetValue().empty() || help.GetValue()) {
101 panda::PandArg<std::string> output_file("output_file", "", "Path to the generated assembly code");
115 pa_parser.PushBackTail(&output_file);
118 if (!ProcessArgs(pa_parser, input_file, output_file, debug, debug_file, help, version, argc, argv)) {
122 Disassemble(input_file.GetValue(), output_file.GetValue(), verbose.GetValue(), quiet.GetValue(),