| /external/chromium_org/tools/memory_inspector/memory_inspector/backends/ | 
| native_heap_dump_parser.py | 9 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(
 
 | 
| android_backend.py | 23 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/ | 
| native_heap_classifier_unittest.py | 8 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(
 
 | 
| native_heap_classifier.py | 34 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/core/ | 
| native_heap_unittest.py | 22 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)
 
 | 
| /external/chromium_org/tools/memory_inspector/memory_inspector/data/ | 
| serialization.py | 20 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'],
 
 | 
| file_storage_unittest.py | 13 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,
 
 | 
| file_storage.py | 21 from memory_inspector.core import native_heap  namespace 145     assert(isinstance(nheap, native_heap.NativeHeap))
 
 |