Lines Matching refs:caller
255 for func2, caller in callers.iteritems():
256 newcallers[func_strip_path(func2)] = caller
281 for func2, caller in callers.iteritems():
284 all_callees[func2][func] = caller
507 """Combine two caller lists in a single list."""
509 for func, caller in target.iteritems():
510 new_callers[func] = caller
511 for func, caller in source.iteritems():
513 if isinstance(caller, tuple):
516 zip(caller, new_callers[func])])
519 new_callers[func] += caller
521 new_callers[func] = caller
525 """Sum the caller statistics to get total number of calls received."""