Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dtrace.py451 def __init__(self, count=1, trace=1, countfuncs=0, countcallers=0, argument
485 if countcallers:
690 countcallers = False
703 countcallers = True
771 if not (count or trace or report or listfuncs or countcallers):
794 countcallers=countcallers, ignoremods=ignore_modules,
/external/python/cpython2/Lib/test/
Dtest_trace.py105 self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0)
178 tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0)
195 self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0)
258 self.tracer = Trace(count=0, trace=0, countcallers=1)
/external/python/cpython2/Doc/library/
Dtrace.rst133 .. class:: Trace([count=1[, trace=1[, countfuncs=0[, countcallers=0[, ignoremods=()[, ignoredirs=()…
138 functions called during the run. *countcallers* enables call relationship
/external/python/cpython2/Misc/
DHISTORY3415 - Added countcallers arg to trace.Trace class (--trackcalls command line arg