Home
last modified time | relevance | path

Searched refs:PathElement (Results 1 – 5 of 5) sorted by relevance

/art/tools/ahat/src/main/com/android/ahat/heapdump/
DPathElement.java32 public class PathElement implements Diffable<PathElement> { class
64 public PathElement(AhatInstance instance, String field) { in PathElement() method in PathElement
70 @Override public PathElement getBaseline() { in getBaseline()
DAhatInstance.java630 public List<PathElement> getPathFromGcRoot() { in getPathFromGcRoot()
635 List<PathElement> path = new ArrayList<PathElement>(); in getPathFromGcRoot()
638 for (PathElement elem = new PathElement(this, ""); elem != null; in getPathFromGcRoot()
655 private static PathElement getNextPathElementToGcRoot(AhatInstance inst) { in getNextPathElementToGcRoot()
659 return new PathElement(inst.mNextInstanceToGcRoot, inst.mNextInstanceToGcRootField); in getNextPathElementToGcRoot()
/art/tools/ahat/src/main/com/android/ahat/
DObjectHandler.java28 import com.android.ahat.heapdump.PathElement;
257 List<PathElement> path = inst.getPathFromGcRoot(); in printGcRootPath()
260 final PathElement root = new PathElement(null, null); in printGcRootPath()
263 HeapTable.TableConfig<PathElement> table = new HeapTable.TableConfig<PathElement>() { in printGcRootPath()
268 public long getSize(PathElement element, AhatHeap heap) { in printGcRootPath()
278 public List<HeapTable.ValueConfig<PathElement>> getValueConfigs() { in printGcRootPath()
279 HeapTable.ValueConfig<PathElement> value = new HeapTable.ValueConfig<PathElement>() { in printGcRootPath()
284 public DocString render(PathElement element) { in printGcRootPath()
/art/tools/ahat/etc/
Dahat_api.txt92 method public List<PathElement> getPathFromGcRoot();
189 …public class PathElement implements com.android.ahat.heapdump.Diffable<com.android.ahat.heapdump.P…
190 ctor public PathElement(com.android.ahat.heapdump.AhatInstance, String);
191 method public com.android.ahat.heapdump.PathElement getBaseline();
/art/tools/ahat/src/test/com/android/ahat/
DInstanceTest.java24 import com.android.ahat.heapdump.PathElement;
259 List<PathElement> path = target.getPathFromGcRoot(); in gcRootPath()
314 List<PathElement> path = object.getPathFromGcRoot(); in gcRootPathNotWeak()