Home | History | Annotate | Download | only in python

Lines Matching refs:symbolicate

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)
730 option_parser.add_option('--crashed-only' , '-c', action='store_true', dest='crashed_only', help='only symbolicate the crashed thread', default=False)
743 description='''Symbolicate one or more darwin crash log files to provide source file and line information,
779 lldb.debugger.HandleCommand('command script add -f lldb.macosx.crashlog.Symbolicate crashlog')