Home
last modified time | relevance | path

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

12

/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/cpython3/Lib/test/
Dtest_sys_setprofile.py9 sys.setprofile(None)
12 sys.setprofile(None)
21 sys.setprofile(fn)
404 sys.setprofile(p.callback)
406 sys.setprofile(None)
Dtest_threading.py848 threading.setprofile(fn)
851 threading.setprofile(old_profile)
/external/tensorflow/tensorflow/python/profiler/internal/
Dpython_hooks.cc36 py::object setprofile = py::module::import("sys").attr("setprofile"); in SysSetProfileNone() local
37 setprofile(py::none()); in SysSetProfileNone()
41 py::object setprofile = py::module::import("threading").attr("setprofile"); in ThreadingSetProfile() local
42 setprofile(callback); in ThreadingSetProfile()
/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/cpython3/Lib/
Dprofile.py420 sys.setprofile(self.dispatcher)
424 sys.setprofile(None)
430 sys.setprofile(self.dispatcher)
434 sys.setprofile(None)
Dthreading.py58 def setprofile(func): function
1006 _sys.setprofile(_profile_hook)
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a5.rst439 sys.settrace(), sys.setprofile() and _lsprof.Profiler.enable() now properly
440 report :c:func:`PySys_Audit` error if "sys.setprofile" or "sys.settrace"
D3.7.0b1.rst713 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
D3.6.5rc1.rst611 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
D3.10.0a3.rst662 :func:`threading.setprofile` respectively. Patch by Mario Corchero.
/external/python/cpython3/Doc/library/
Dthreading.rst160 .. function:: setprofile(func)
165 The *func* will be passed to :func:`sys.setprofile` for each thread, before its
173 Get the profiler function as set by :func:`setprofile`.
Dsys.rst745 Get the profiler function as set by :func:`setprofile`.
1257 .. function:: setprofile(profilefunc)
1279 .. audit-event:: sys.setprofile "" sys.setprofile
Dmultiprocessing.rst1078 :func:`threading.settrace`, :func:`threading.setprofile`,
/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/cpython3/Doc/tutorial/
Dmodules.rst328 'setprofile', 'setrecursionlimit', 'setswitchinterval', 'settrace', 'stderr',
/external/python/cpython2/Doc/tutorial/
Dmodules.rst320 'py3kwarning', 'setcheckinterval', 'setdlopenflags', 'setprofile',
/external/python/cpython2/Misc/NEWS.d/
D2.7.15rc1.rst1262 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
/external/python/cpython3/Doc/whatsnew/
D2.2.rst1061 :func:`sys.setprofile` and :func:`sys.settrace` functions still exist, and have
D3.10.rst1404 :func:`threading.setprofile` respectively.
/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.

12