Lines Matching refs:child
47 // site (including child sites) on the given heap.
50 // Mapping from child site name to child site.
53 // List of all objects allocated in this site (including child sites).
119 Site child = mChildren.get(next);
120 if (child == null) {
121 child = new Site(this, next, stackId, stackDepth + 1);
122 mChildren.put(next, child);
124 return child.add(stackId, stackDepth + 1, path, inst);
187 // Get the child at the given path relative to this site.
188 // Returns null if no such child found.
192 Site child = mChildren.get(next);
193 return (child == null) ? null : child.getChild(path);