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

  /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...]
gdbremote.py 232 parser.add_option('-s', '--symbolicate', action='store_true', dest='symbolicate', help='symbolicate addresses in log using current "lldb.target"', default=False)
239 if options.symbolicate:
245 print "error: can't symbolicate without a target"
724 symbolicated_addresses = options.symbolicator.symbolicate (int(value_str, 0))
    [all...]
  /external/lldb/examples/darwin/heap_find/
heap.py 297 frames = symbolicator.symbolicate(pc)
    [all...]

Completed in 236 milliseconds