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

  /external/lldb/www/python_reference/
toc-lldb.utils.symbolication-module.html 21 <a target="mainFrame" href="lldb.utils.symbolication-module.html#Symbolicate"
22 >Symbolicate</a><br /> <a target="mainFrame" href="lldb.utils.symbolication-module.html#disassemble_instructions"
lldb.utils.symbolication.Symbolicator-class.html 87 A class the represents the information needed to symbolicate
170 <td><span class="summary-sig"><a name="symbolicate"></a><span class="summary-sig-name">symbolicate</span>(<span class="summary-sig-arg">self</span>,
174 <span class="codelink"><a href="lldb.utils.symbolication-pysrc.html#Symbolicator.symbolicate">source&nbsp;code</a></span>
lldb.utils.symbolication-module.html 221 <td><span class="summary-sig"><a name="Symbolicate"></a><span class="summary-sig-name">Symbolicate</span>(<span class="summary-sig-arg">command_args</span>)</span></td>
223 <span class="codelink"><a href="lldb.utils.symbolication-pysrc.html#Symbolicate">source&nbsp;code</a></span>
lldb.utils.symbolication.Address-class.html 186 <td><span class="summary-sig"><a name="symbolicate"></a><span class="summary-sig-name">symbolicate</span>(<span class="summary-sig-arg">self</span>,
189 <span class="codelink"><a href="lldb.utils.symbolication-pysrc.html#Address.symbolicate">source&nbsp;code</a></span>
lldb.utils.symbolication-pysrc.html 182 <a name="Address.symbolicate"></a><div id="Address.symbolicate-def"><a name="L86"></a><tt class="py-lineno"> 86</tt> <a class="py-toggle" href="#" id="Address.symbolicate-toggle" onclick="return toggle('Address.symbolicate');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="lldb.utils.symbolication.Address-class.html#symbolicate">symbolicate</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">verbose</tt> <tt class="py-op">=</tt> <tt class="py-name">False</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>
183 </div><div id="Address.symbolicate-collapsed" style="display:none;" pad="+++" indent="++++++++"></div><div id="Address.symbolicate-expanded"><a name="L87"></a><tt class="py-lineno"> 87</tt> <tt class="py-line"> <tt class="py-keyword">if</tt> <tt class="py-name">self</tt><tt class="py-op">.</tt><tt id="link-33" class="py-name"><a title="lldb.utils.symbolication" class="py-name" href="#" onclick="return doclink('link-33', 'symbolication', 'link-7');">symbolication</a></tt> <tt class="py-op">==</tt> <tt class="py-name">None</tt><tt class="py-op">:</tt> </tt>
    [all...]
api-objects.txt     [all...]
toc-everything.html     [all...]
  /external/lldb/www/
symbolication.html 25 used to symbolicate your crash logs and can often provide more information than
37 system. When we symbolicate, we are often symbolicating a binary that
136 <p>You often have more than one executable involved when you need to symbolicate
176 <p>We can now symbolicate the <b>load</b> addresses:<p>
220 <h1 class="postheader">Using Python API to Symbolicate</h1>
253 <h1 class="postheader">Use Builtin Python module to Symbolicate</h1>
281 in the target in order to symbolicate.
291 instances that need to be loaded in order to symbolicate an supplied address.
297 in the lldb.utils.symbolication to symbolicate the crash logs.</p>
300 it to parse and symbolicate Mac OS X crash logs:</p>
    [all...]
  /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/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/lookup/
main.cpp 77 " " PROGRAM_NAME " -- symbolicate addresses using lldb.\n"
  /external/lldb/examples/darwin/heap_find/
heap.py 297 frames = symbolicator.symbolicate(pc)
    [all...]
  /external/clang/test/Analysis/
misc-ps.m 238 // <rdar://problem/6695527> - Test that we don't symbolicate doubles before
    [all...]
misc-ps-region-store.m 1046 // <rdar://problem/8243408> - Symbolicate struct values returned by value.
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp     [all...]

Completed in 384 milliseconds