Home
last modified time | relevance | path

Searched refs:countcallers (Results 1 – 8 of 8) 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/cpython3/Lib/test/
Dtest_trace.py122 self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0)
215 tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0)
234 self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0)
326 self.tracer = Trace(count=0, trace=0, countcallers=1)
/external/python/cpython3/Lib/
Dtrace.py388 def __init__(self, count=1, trace=1, countfuncs=0, countcallers=0, argument
421 if countcallers:
698 countcallers=opts.trackcalls, ignoremods=opts.ignore_module,
/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/cpython3/Doc/library/
Dtrace.rst142 .. class:: Trace(count=1, trace=1, countfuncs=0, countcallers=0, ignoremods=(),\
148 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
/external/python/cpython3/Misc/
DHISTORY20799 - Added countcallers arg to trace.Trace class (--trackcalls command line arg