HomeSort by relevance Sort by last modified time
    Searched refs:Symbolicate (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/tools/mac/
symbolicate_crash.py 7 This script can take an Apple-style CrashReporter log and symbolicate it. This
65 def Symbolicate(self, symbol_path):
461 description='This will parse and symbolicate an Apple CrashReporter v6-9 '
472 # Check that we have something to symbolicate.
498 report.Symbolicate(symbol_path)
  /external/lldb/examples/python/
symbolication.py 86 def symbolicate(self, verbose = False): member in class:Address
378 """A class the represents the information needed to symbolicate addresses in a program"""
425 def symbolicate(self, load_addr, verbose = False): member in class:Symbolicator
443 if symbolicated_address.symbolicate (verbose):
459 symbolicated_address.symbolicate (verbose)
535 def Symbolicate(command_args):
538 description='''Symbolicate one or more addresses using LLDB's python scripting API..'''
573 symbolicated_addrs = symbolicator.symbolicate(addr, options.verbose)
583 Symbolicate (sys.argv[1:])
crashlog.py 384 # We weren't able to open the main executable as, but we can still symbolicate
404 print "Usage: lldb-symbolicate.py [-n name] executable-image"
432 description='''Symbolicate one or more darwin crash log files by index to provide source file and line information,
435 option_parser = CreateSymbolicateCrashLogOptions ('symbolicate', description, False)
451 # No arguments, symbolicate all crash logs using the options provided
607 def Symbolicate(debugger, command, result, dict):
683 symbolicated_frame_addresses = crash_log.symbolicate (frame.pc & crash_log.addr_mask, options.verbose)
686 symbolicated_frame_addresses = crash_log.symbolicate ((frame.pc & crash_log.addr_mask) - 1, options.verbose)
    [all...]

Completed in 234 milliseconds