Home | History | Annotate | Download | only in dmtracedump

Lines Matching defs:caller

2302     MethodEntry* caller;
2372 /* Get the caller method */
2374 caller = pStack->calls[pStack->top - 1].method;
2376 caller = &dataKeys->methods[TOPLEVEL_INDEX];
2377 countRecursiveEntries(pStack, pStack->top, caller);
2378 caller->elapsedExclusive += currentTime - pStack->lastEventTime;
2380 if (caller->elapsedExclusive > 10000000)
2382 caller->elapsedExclusive, currentTime,
2386 if (caller->recursiveEntries <= 1) {
2387 caller->topExclusive += currentTime - pStack->lastEventTime;
2417 /* Get the caller method */
2419 caller = pStack->calls[pStack->top - 1].method;
2421 caller = &dataKeys->methods[TOPLEVEL_INDEX];
2422 countRecursiveEntries(pStack, pStack->top, caller);
2425 addInclusiveTime(caller, method, elapsed);
2454 caller = &dataKeys->methods[TOPLEVEL_INDEX];
2456 caller = pStack->calls[ii - 1].method;
2458 countRecursiveEntries(pStack, ii, caller);
2463 addInclusiveTime(caller, method, elapsed);
2466 caller = &dataKeys->methods[TOPLEVEL_INDEX];
2467 caller->elapsedInclusive = sumThreadTime;