Lines Matching full:debug
34 LOG(DEBUG, DISASSEMBLER) << "[initializing disassembler]\nfile: " << input_file << "\n"; in Disassemble()
42 LOG(DEBUG, DISASSEMBLER) << "[serializing results]\n"; in Disassemble()
51 const panda::PandArg<std::string> &output_file, panda::PandArg<bool> &debug, in ProcessArgs() argument
73 if (debug.GetValue()) { in ProcessArgs()
76 panda::Logger::Level::DEBUG, log_mask); in ProcessArgs()
79 debug_file.GetValue(), panda::Logger::Level::DEBUG, log_mask); in ProcessArgs()
96 panda::PandArg<bool> debug( in main() local
97 …"debug", false, "enable debug messages (will be printed to standard output if no --debug-file was … in main()
98 panda::PandArg<std::string> debug_file("debug-file", "", in main()
99 … "(--debug-file FILENAME) set debug file name. default is std::cout"); in main()
111 pa_parser.Add(&debug); in main()
118 …if (!ProcessArgs(pa_parser, input_file, output_file, debug, debug_file, help, version, argc, argv)… in main()