Lines Matching refs:panda
19 namespace panda::abc2program {
23 panda::PandArg<bool> help("help", false, "Print this message and exit");
24 panda::PandArg<bool> debug(
26 panda::PandArg<std::string> debug_file("debug-file", "",
28 panda::PandArg<std::string> input_file("input_file", "", "Path to the source binary code");
29 panda::PandArg<std::string> output_file("output_file", "", "Path to the generated assembly code");
45 panda::Logger::InitializeStdLogging(
46 panda::Logger::Level::DEBUG,
47 panda::Logger::ComponentMask().set(panda::Logger::Component::ABC2PROGRAM));
49 panda::Logger::InitializeFileLogging(
50 debug_file.GetValue(), panda::Logger::Level::DEBUG,
51 panda::Logger::ComponentMask().set(panda::Logger::Component::ABC2PROGRAM));
54 panda::Logger::InitializeStdLogging(panda::Logger::Level::ERROR,
55 panda::Logger::ComponentMask().set(panda::Logger::Component::ABC2PROGRAM));
95 } // namespace panda::abc2program