Home
last modified time | relevance | path

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

/art/tools/dmtracedump/
Dtracedump.cc174 struct TimedMethod* parents[2]; /* 0=normal, 1=recursive */ member
309 method->parents[0] = nullptr; in initMethodEntry()
310 method->parents[1] = nullptr; in initMethodEntry()
1184 TimedMethod* parents = child->parents[childIsRecursive]; in addInclusiveTime() local
1185 for (pTimed = parents; pTimed; pTimed = pTimed->next) { in addInclusiveTime()
1200 pTimed->next = parents; in addInclusiveTime()
1201 child->parents[childIsRecursive] = pTimed; in addInclusiveTime()
1534 printInclusiveMethod(method, method->parents[0], numCalls, 0); in printInclusiveProfile()
1535 if (method->parents[1]) { in printInclusiveProfile()
1537 printInclusiveMethod(method, method->parents[1], numCalls, kIsRecursive); in printInclusiveProfile()