Lines Matching defs:crash_log
165 def dump_symbolicated(self, crash_log, options):
181 pc = frame.pc & crash_log.addr_mask
183 symbolicated_frame_addresses = crash_log.symbolicate(
204 crash_log.debugger.GetSourceManager().DisplaySourceLinesWithLineNumbers(
232 crash_log.get_target(),
1454 def SymbolicateCrashLog(crash_log, options):
1456 crash_log.dump()
1457 if not crash_log.images:
1463 for image in crash_log.images:
1469 target = crash_log.create_target()
1473 crash_log.load_images(options)
1475 if crash_log.backtraces:
1476 for thread in crash_log.backtraces:
1477 thread.dump_symbolicated(crash_log, options)
1480 for thread in crash_log.threads:
1485 thread.dump_symbolicated(crash_log, options)
1488 if crash_log.errors:
1490 for error in crash_log.errors:
1861 crash_log = CrashLogParser.create(
1864 SymbolicateCrashLog(crash_log, options)