Searched refs:mSnapshot (Results 1 - 10 of 10) sorted by relevance

/art/tools/ahat/src/
H A DRootedHandler.java25 private AhatSnapshot mSnapshot; field in class:RootedHandler
28 mSnapshot = snapshot;
34 DominatedList.render(mSnapshot, doc, query, ROOTED_ID, mSnapshot.getRooted());
H A DDominatedList.java49 AhatSnapshot mSnapshot; field in class:DominatedList.TableConfig
52 mSnapshot = snapshot;
62 int index = mSnapshot.getHeapIndex(heap);
74 return Value.render(mSnapshot, element);
H A DObjectsHandler.java28 private AhatSnapshot mSnapshot; field in class:ObjectsHandler
31 mSnapshot = snapshot;
40 Site site = mSnapshot.getSite(stackId, depth);
51 Collections.sort(insts, Sort.defaultInstanceCompare(mSnapshot));
63 Value.render(mSnapshot, inst));
H A DOverviewHandler.java29 private AhatSnapshot mSnapshot; field in class:OverviewHandler
33 mSnapshot = snapshot;
52 List<InstanceUtils.NativeAllocation> allocs = mSnapshot.getNativeAllocations();
79 return mSnapshot.getHeapSize(heap);
86 HeapTable.render(doc, query, OVERVIEW_ID, table, mSnapshot, dummy);
H A DBitmapHandler.java29 private AhatSnapshot mSnapshot; field in class:BitmapHandler
32 mSnapshot = snapshot;
41 Instance inst = mSnapshot.findInstance(id);
H A DObjectHandler.java46 private AhatSnapshot mSnapshot; field in class:ObjectHandler
49 mSnapshot = snapshot;
55 Instance inst = mSnapshot.findInstance(id);
62 doc.big(Value.render(mSnapshot, inst));
70 doc.description(DocString.text("Class"), Value.render(mSnapshot, cls));
77 Collection<RootType> rootTypes = mSnapshot.getRootTypes(inst);
93 printClassInstanceFields(doc, query, mSnapshot, (ClassInstance)inst);
95 printArrayElements(doc, query, mSnapshot, (ArrayInstance)inst);
97 printClassInfo(doc, query, mSnapshot, (ClassObj)inst);
99 printReferences(doc, query, mSnapshot, ins
[all...]
H A DSiteHandler.java30 private AhatSnapshot mSnapshot; field in class:SiteHandler
33 mSnapshot = snapshot;
40 Site site = mSnapshot.getSite(stackId, depth);
44 SitePrinter.printSite(mSnapshot, doc, query, ALLOCATION_SITE_ID, site);
78 HeapTable.render(doc, query, SITES_CALLED_ID, table, mSnapshot, children);
104 Value.render(mSnapshot, info.classObj));
H A DNativeAllocationsHandler.java27 private AhatSnapshot mSnapshot; field in class:NativeAllocationsHandler
30 mSnapshot = snapshot;
35 List<InstanceUtils.NativeAllocation> allocs = mSnapshot.getNativeAllocations();
72 Value.render(mSnapshot, alloc.referent));
H A DAhatSnapshot.java46 private final Snapshot mSnapshot; field in class:AhatSnapshot
83 mSnapshot = snapshot;
84 mHeaps = new ArrayList<Heap>(mSnapshot.getHeaps());
86 ClassObj javaLangClass = mSnapshot.findClass("java.lang.Class");
147 return mSnapshot.findClass(name);
151 return mSnapshot.findInstance(id);
155 return mSnapshot.getHeapIndex(heap);
159 return mSnapshot.getHeap(name);
255 StackTrace stack = mSnapshot.getStackTrace(stackId);
/art/tools/ahat/test/
H A DTestDump.java38 private AhatSnapshot mSnapshot = null; field in class:TestDump
51 mSnapshot = AhatSnapshot.fromHprof(new File(hprof));
58 return mSnapshot;
66 ClassObj main = mSnapshot.findClass("Main");

Completed in 316 milliseconds