Lines Matching refs:child
1356 void addInclusiveTime(MethodEntry *parent, MethodEntry *child, in addInclusiveTime() argument
1363 if (strcmp(child->className, debugClassName) == 0) in addInclusiveTime()
1367 int childIsRecursive = (child->recursiveEntries > 0); in addInclusiveTime()
1370 if (child->recursiveEntries == 0) { in addInclusiveTime()
1371 child->elapsedInclusive += elapsedTime; in addInclusiveTime()
1372 } else if (child->recursiveEntries == 1) { in addInclusiveTime()
1373 child->recursiveInclusive += elapsedTime; in addInclusiveTime()
1375 child->numCalls[childIsRecursive] += 1; in addInclusiveTime()
1381 child->className, child->recursiveEntries, in addInclusiveTime()
1382 elapsedTime, child->elapsedInclusive, in addInclusiveTime()
1383 child->recursiveInclusive); in addInclusiveTime()
1390 if (pTimed->method == child) { in addInclusiveTime()
1401 pTimed->method = child; in addInclusiveTime()
1409 TimedMethod *parents = child->parents[childIsRecursive]; in addInclusiveTime()
1426 child->parents[childIsRecursive] = pTimed; in addInclusiveTime()
1690 int checkThreshold(MethodEntry* parent, MethodEntry* child) in checkThreshold() argument
1693 double childTime = child->elapsedInclusive; in checkThreshold()
1708 TimedMethod* child; in createLabels() local
1709 for (child = method->children[0] ; child ; child = child->next) { in createLabels()
1710 MethodEntry* childMethod = child->method; in createLabels()
1713 createLabels(file, child->method); in createLabels()
1722 TimedMethod* child; in createLinks() local
1723 for (child = method->children[0] ; child ; child = child->next) { in createLinks()
1724 MethodEntry* childMethod = child->method; in createLinks()
1725 if (checkThreshold(method, child->method)) { in createLinks()
1726 fprintf(file, "node%d -> node%d\n", method->index, child->method->index); in createLinks()
1729 createLinks(file, child->method); in createLinks()