Home
last modified time | relevance | path

Searched refs:parents (Results 1 – 1 of 1) sorted by relevance

/dalvik/tools/dmtracedump/
DTraceDump.c172 struct TimedMethod *parents[2]; /* 0=normal, 1=recursive */ member
315 method->parents[0] = NULL; in initMethodEntry()
316 method->parents[1] = NULL; in initMethodEntry()
1336 TimedMethod *parents = child->parents[childIsRecursive]; in addInclusiveTime() local
1337 for (pTimed = parents; pTimed; pTimed = pTimed->next) { in addInclusiveTime()
1352 pTimed->next = parents; in addInclusiveTime()
1353 child->parents[childIsRecursive] = pTimed; in addInclusiveTime()
1751 printInclusiveMethod(method, method->parents[0], numCalls, 0); in printInclusiveProfile()
1752 if (method->parents[1]) { in printInclusiveProfile()
1754 printInclusiveMethod(method, method->parents[1], numCalls, in printInclusiveProfile()