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

  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
stacktrace_unittest.py 7 from memory_inspector.core import stacktrace namespace
12 st = stacktrace.Stacktrace()
13 frame_1 = stacktrace.Frame(20)
14 frame_2 = stacktrace.Frame(24)
native_heap_unittest.py 23 from memory_inspector.core import stacktrace namespace
36 st1 = stacktrace.Stacktrace()
40 st2 = stacktrace.Stacktrace()
stacktrace.py 10 class Stacktrace(object):
32 """Models a stack frame in a |Stacktrace|. It might be symbolized or not."""
native_heap.py 6 from memory_inspector.core import stacktrace namespace
20 self.stack_frames = {} # absolute_address (int) -> |stacktrace.Frame|.
31 stack_frame = stacktrace.Frame(absolute_addr)
104 stack_trace: the allocation call-site. See |stacktrace.Stacktrace|.
114 assert(isinstance(stack_trace, stacktrace.Stacktrace))
  /external/chromium_org/tools/findit/
findit_for_clusterfuzz.py 9 import stacktrace namespace
13 """Preprocesses stacktrace string into two parts, release and debug.
16 stacktrace_string: A string representation of stacktrace,
20 A tuple of list of strings, release build stacktrace and
21 debug build stacktrace.
23 # Make sure we only parse release/debug build stacktrace, and ignore
24 # unsymbolised stacktrace.
30 # Iterate through all lines in stacktrace.
34 # If the line starts with +, it signifies the start of new stacktrace.
36 if 'Release Build Stacktrace' in line
    [all...]
stacktrace.py 16 """Represents a frame in stacktrace.
40 """Represents a call stack within a stacktrace.
57 class Stacktrace(object):
58 """Represents Stacktrace object.
60 Contains a list of callstacks, because one stacktrace might have more than
64 def __init__(self, stacktrace, build_type, parsed_deps):
66 self.ParseStacktrace(stacktrace, build_type, parsed_deps)
68 def ParseStacktrace(self, stacktrace, build_type, parsed_deps):
69 """Parses stacktrace and normalizes it.
71 If there are multiple callstacks within the stacktrace,
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/backends/
native_heap_dump_parser.py 10 from memory_inspector.core import stacktrace namespace
35 strace_by_index = {} # index (str) -> |stacktrace.Stacktrace|
38 strace = stacktrace.Stacktrace()
  /external/chromium_org/tools/memory_inspector/memory_inspector/classification/
native_heap_classifier_unittest.py 9 from memory_inspector.core import stacktrace namespace
21 'stacktrace': r'content::browser',
26 'stacktrace': r'content::renderer',
32 'stacktrace': [r'sk::', r'ashmem::'],
110 mock_strace = stacktrace.Stacktrace()
113 mock_frame = stacktrace.Frame(mock_addr)
126 mock_strace = stacktrace.Stacktrace()
128 mock_frame = stacktrace.Frame(mock_addr
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/data/
serialization.py 21 from memory_inspector.core import stacktrace namespace
45 if isinstance(obj, stacktrace.Stacktrace):
51 if isinstance(obj, stacktrace.Frame):
105 stack_trace = stacktrace.Stacktrace()
file_storage_unittest.py 14 from memory_inspector.core import stacktrace namespace
83 stack_trace = stacktrace.Stacktrace()

Completed in 112 milliseconds