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

  /external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/css/
nheap.css 5 #nheap-table dl {
10 #nheap-table dt {
13 #nheap-table dd {
  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
native_heap_unittest.py 31 nheap = native_heap.NativeHeap()
37 st1.Add(nheap.GetStackFrame(EXE_1_MM_BASE))
38 st1.Add(nheap.GetStackFrame(EXE_1_MM_BASE + 4))
41 st2.Add(nheap.GetStackFrame(EXE_1_MM_BASE))
42 st2.Add(nheap.GetStackFrame(EXE_2_MM_BASE + 4))
43 st2.Add(nheap.GetStackFrame(EXE_2_MM_BASE + PAGE_SIZE + 4))
56 nheap.Add(alloc1)
57 nheap.Add(alloc2)
58 nheap.Add(alloc3)
60 self.assertEqual(len(nheap.allocations), 3
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/classification/
native_heap_classifier_unittest.py 107 nheap = native_heap.NativeHeap()
116 nheap.Add(native_heap.Allocation(
119 res = native_heap_classifier.Classify(nheap, rule_tree)
123 nheap = native_heap.NativeHeap()
132 nheap.Add(native_heap.Allocation(
136 nheap, threshold=0.05)
137 res = native_heap_classifier.Classify(nheap, rule_tree)
native_heap_classifier.py 69 def InferHeuristicRulesFromHeap(nheap, max_depth=3, threshold=0.02):
78 assert(isinstance(nheap, native_heap.NativeHeap))
116 for alloc in nheap.allocations:
  /external/chromium_org/tools/memory_inspector/memory_inspector/frontends/
background_tasks.py 97 nheap = process.DumpNativeHeap()
99 'Dumped %d native allocations' % len(nheap.allocations)))
108 nheap.RelativizeStackFrames(mmaps)
109 nheap.CalculateResidentSize(mmaps)
110 archive.StoreNativeHeap(nheap)
111 heaps_to_symbolize += [nheap]
www_server.py 195 elif req_vars['type'] == 'nheap':
206 # Initialize the classifier (mmap or nheap) and prepare symbols for nheap.
209 elif req_vars['type'] == 'nheap':
214 for nheap in dumps.itervalues():
215 nheap.SymbolizeUsingSymbolDB(symbols)
222 assert(req_vars['type'] == 'nheap'), (
223 'heuristic rules are supported only for nheap')
355 'nheap': filter(lambda x: 'nheap-' in x, rules)
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/data/
file_storage.py 82 _NHEAP_EXT = '-nheap.json'
144 def StoreNativeHeap(self, nheap):
145 assert(isinstance(nheap, native_heap.NativeHeap))
150 json.dump(nheap, f, cls=serialization.Encoder)
  /external/srec/srec/Semproc/src/
SemanticProcessorImpl.c 83 static ESR_ReturnCode sem_partial_path_list_init(sem_partial_path* heap, int nheap);
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/backends/
android_backend.py 105 for nheap in native_heaps:
106 for stack_frame in nheap.stack_frames.itervalues():

Completed in 357 milliseconds