Searched refs:native_heap (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/tools/memory_inspector/memory_inspector/backends/
H A Dnative_heap_dump_parser.py9 from memory_inspector.core import native_heap namespace
30 An instance of |native_heap.NativeHeap|.
34 nativeheap = native_heap.NativeHeap()
50 nativeheap.Add(native_heap.Allocation(
H A Dandroid_backend.py23 from memory_inspector.core import native_heap namespace
82 can be decorated as needed using the native_heap.SymbolizeUsingSymbolDB()
88 native_heaps: a collection of native_heap.NativeHeap instances.
91 assert(all(isinstance(x, native_heap.NativeHeap) for x in native_heaps))
/external/chromium_org/tools/memory_inspector/memory_inspector/classification/
H A Dnative_heap_classifier_unittest.py8 from memory_inspector.core import native_heap namespace
107 nheap = native_heap.NativeHeap()
116 nheap.Add(native_heap.Allocation(
123 nheap = native_heap.NativeHeap()
132 nheap.Add(native_heap.Allocation(
H A Dnative_heap_classifier.py34 from memory_inspector.core import native_heap namespace
59 assert(isinstance(nativeheap, native_heap.NativeHeap))
78 assert(isinstance(nheap, native_heap.NativeHeap))
/external/chromium_org/tools/memory_inspector/memory_inspector/data/
H A Dserialization.py20 from memory_inspector.core import native_heap namespace
36 if isinstance(obj, native_heap.NativeHeap):
42 if isinstance(obj, native_heap.Allocation):
47 # kept in (and rebuilt from) |native_heap.NativeHeap.stack_frames|. See
97 nh = native_heap.NativeHeap()
108 nh.Add(native_heap.Allocation(start=alloc_dict['start'],
H A Dfile_storage_unittest.py13 from memory_inspector.core import native_heap namespace
55 archive.StoreNativeHeap(native_heap.NativeHeap())
81 nh = native_heap.NativeHeap()
90 nh.Add(native_heap.Allocation(size=i * 10,
H A Dfile_storage.py21 from memory_inspector.core import native_heap namespace
145 assert(isinstance(nheap, native_heap.NativeHeap))
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dnative_heap_unittest.py22 from memory_inspector.core import native_heap namespace
31 nheap = native_heap.NativeHeap()
53 alloc1 = native_heap.Allocation(start=4, size=4, stack_trace=st1)
54 alloc2 = native_heap.Allocation(start=4090, size=8, stack_trace=st1)
55 alloc3 = native_heap.Allocation(start=8190, size=10000, stack_trace=st2)

Completed in 126 milliseconds