Home
last modified time | relevance | path

Searched refs:setprofile (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_sys_setprofile.py10 sys.setprofile(None)
13 sys.setprofile(None)
22 sys.setprofile(fn)
363 sys.setprofile(p.callback)
365 sys.setprofile(None)
/external/python/cpython2/Lib/
Dprofile.py442 sys.setprofile(self.dispatcher)
446 sys.setprofile(None)
452 sys.setprofile(self.dispatcher)
456 sys.setprofile(None)
Dthreading.py90 def setprofile(func): function
798 _sys.setprofile(_profile_hook)
/external/python/cpython2/Doc/library/
Dthreading.rst181 .. function:: setprofile(func)
186 The *func* will be passed to :func:`sys.setprofile` for each thread, before its
Dsys.rst478 Get the profiler function as set by :func:`setprofile`.
851 .. function:: setprofile(profilefunc)
Dmultiprocessing.rst799 :func:`threading.settrace`, :func:`threading.setprofile`,
/external/python/cpython2/Doc/tutorial/
Dmodules.rst301 'py3kwarning', 'setcheckinterval', 'setdlopenflags', 'setprofile',
/external/python/cpython2/Doc/whatsnew/
D2.2.rst1061 :func:`sys.setprofile` and :func:`sys.settrace` functions still exist, and have
/external/python/cpython2/Misc/
Dcheatsheet1370 setprofile(func) Sets a profile function for performance profiling.
DHISTORY4081 - The threading module has new functions settrace() and setprofile()
16842 sys: fixed core dumps in settrace() and setprofile()
17042 See sys.settrace() and sys.setprofile(), and "../lib/pdb.doc"