Lines Matching refs:caller
2032 MethodEntry* caller; in parseDataKeys() local
2106 caller = pStack->calls[pStack->top - 1].method; in parseDataKeys()
2108 caller = &dataKeys->methods[TOPLEVEL_INDEX]; in parseDataKeys()
2109 countRecursiveEntries(pStack, pStack->top, caller); in parseDataKeys()
2110 caller->elapsedExclusive += currentTime - pStack->lastEventTime; in parseDataKeys()
2112 if (caller->elapsedExclusive > 10000000) in parseDataKeys()
2114 caller->elapsedExclusive, currentTime, in parseDataKeys()
2118 if (caller->recursiveEntries <= 1) { in parseDataKeys()
2119 caller->topExclusive += currentTime - pStack->lastEventTime; in parseDataKeys()
2148 caller = pStack->calls[pStack->top - 1].method; in parseDataKeys()
2150 caller = &dataKeys->methods[TOPLEVEL_INDEX]; in parseDataKeys()
2151 countRecursiveEntries(pStack, pStack->top, caller); in parseDataKeys()
2154 addInclusiveTime(caller, method, elapsed); in parseDataKeys()
2180 caller = &dataKeys->methods[TOPLEVEL_INDEX]; in parseDataKeys()
2182 caller = pStack->calls[ii - 1].method; in parseDataKeys()
2184 countRecursiveEntries(pStack, ii, caller); in parseDataKeys()
2189 addInclusiveTime(caller, method, elapsed); in parseDataKeys()
2192 caller = &dataKeys->methods[TOPLEVEL_INDEX]; in parseDataKeys()
2193 caller->elapsedInclusive = sumThreadTime; in parseDataKeys()