Searched refs:child (Results 1 - 7 of 7) sorted by relevance

/art/test/063-process-manager/src/
H A DMain.java7 System.out.println("\nspawning child #" + i);
8 child();
15 static private void child() throws Exception { method in class:Main
16 System.out.println("spawning child");
22 System.out.println("child died");
/art/tools/ahat/src/heapdump/
H A DSite.java44 // The total size of objects allocated in this site (including child sites),
49 // List of child sites.
52 // List of all objects allocated in this site (including child sites).
150 Site child = null;
157 child = curr;
161 if (child == null) {
162 child = new Site(site, next.getMethodName(), next.getSignature(),
164 site.mChildren.add(child);
167 site = child;
H A DDiff.java167 for (AhatInstance child : inst.getDominated()) {
168 placeholders.add(child.newPlaceHolderInstance());
169 deque.push(child);
246 for (Site child : root.getChildren()) {
247 setSitesBaseline(child, baseline);
/art/tools/ahat/test-dump/
H A DMain.java59 public StackSmasher child; field in class:Main.StackSmasher
114 smasher.child = stackSmasher;
119 smasher.child = stackSmasherAdded;
/art/tools/dmtracedump/
H A Dtracedump.cc1133 /* This routine adds the given time to the parent and child methods.
1134 * This is called when the child routine exits, after the child has
1136 * duration of the child routine, including time spent in called routines.
1138 void addInclusiveTime(MethodEntry* parent, MethodEntry* child, uint64_t elapsedTime) { argument
1141 if (strcmp(child->className, debugClassName) == 0)
1145 int32_t childIsRecursive = (child->recursiveEntries > 0);
1148 if (child->recursiveEntries == 0) {
1149 child->elapsedInclusive += elapsedTime;
1150 } else if (child
1418 checkThreshold(MethodEntry* parent, MethodEntry* child) argument
[all...]
/art/runtime/verifier/
H A Dreg_type_cache.h82 const RegType& FromUnresolvedSuperClass(const RegType& child)
H A Dreg_type_cache.cc430 const RegType& RegTypeCache::FromUnresolvedSuperClass(const RegType& child) { argument
439 if (unresolved_super_child_id == child.GetId()) {
444 return AddEntry(new (&arena_) UnresolvedSuperClass(child.GetId(), this, entries_.size()));

Completed in 125 milliseconds