Searched refs:site (Results 1 - 5 of 5) sorted by relevance

/art/tools/ahat/src/
H A DSiteHandler.java40 Site site = mSnapshot.getSite(stackId, depth);
42 doc.title("Site %s", site.getName());
44 SitePrinter.printSite(mSnapshot, doc, query, ALLOCATION_SITE_ID, site);
47 List<Site> children = site.getChildren();
70 DocString.formattedUri("site?stack=%d&depth=%d",
87 List<Site.ObjectsInfo> infos = site.getObjectsInfos();
101 site.getStackId(), site.getStackDepth(), info.heap.getName(), className),
H A DSitePrinter.java25 public static void printSite(AhatSnapshot snapshot, Doc doc, Query query, String id, Site site) { argument
27 for (Site parent = site; parent != null; parent = parent.getParent()) {
54 DocString.formattedUri("site?stack=%d&depth=%d",
H A DObjectsHandler.java40 Site site = mSnapshot.getSite(stackId, depth);
43 for (Instance inst : site.getObjects()) {
H A DAhatSnapshot.java194 * Look up the site at which the given object was allocated.
197 Site site = mRootSite;
203 site = mRootSite.getChild(path.iterator());
206 return site;
250 // Get the site associated with the given stack id and depth.
251 // Returns the root site if no such site found.
254 Site site = mRootSite;
263 site = mRootSite.getChild(path.iterator());
266 return site;
[all...]
H A DObjectHandler.java191 Site site = mSnapshot.getSiteForInstance(inst);
192 SitePrinter.printSite(mSnapshot, doc, query, ALLOCATION_SITE_ID, site);

Completed in 84 milliseconds