Searched defs:child (Results 1 - 3 of 3) sorted by relevance

/dalvik/tests/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");
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaBasicBlock.java179 * Adds a basic block as a dom child for this block. Used when constructing
182 * @param child {@code non-null;} new dom child
184 public void addDomChild(SsaBasicBlock child) { argument
185 domChildren.add(child);
/dalvik/tools/dmtracedump/
H A DTraceDump.c1278 /* This routine adds the given time to the parent and child methods.
1279 * This is called when the child routine exits, after the child has
1281 * duration of the child routine, including time spent in called routines.
1283 void addInclusiveTime(MethodEntry *parent, MethodEntry *child, argument
1290 if (strcmp(child->className, debugClassName) == 0)
1294 int childIsRecursive = (child->recursiveEntries > 0);
1297 if (child->recursiveEntries == 0) {
1298 child->elapsedInclusive += elapsedTime;
1299 } else if (child
1615 checkThreshold(MethodEntry* parent, MethodEntry* child) argument
1633 TimedMethod* child; local
1647 TimedMethod* child; local
[all...]

Completed in 134 milliseconds