Searched refs:setprofile (Results 1 – 25 of 28) sorted by relevance
12
/external/python/cpython2/Lib/test/ |
D | test_sys_setprofile.py | 10 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/ |
D | test_sys_setprofile.py | 9 sys.setprofile(None) 12 sys.setprofile(None) 21 sys.setprofile(fn) 404 sys.setprofile(p.callback) 406 sys.setprofile(None)
|
D | test_threading.py | 848 threading.setprofile(fn) 851 threading.setprofile(old_profile)
|
/external/tensorflow/tensorflow/python/profiler/internal/ |
D | python_hooks.cc | 36 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/ |
D | profile.py | 442 sys.setprofile(self.dispatcher) 446 sys.setprofile(None) 452 sys.setprofile(self.dispatcher) 456 sys.setprofile(None)
|
D | threading.py | 90 def setprofile(func): function 798 _sys.setprofile(_profile_hook)
|
/external/python/cpython3/Lib/ |
D | profile.py | 420 sys.setprofile(self.dispatcher) 424 sys.setprofile(None) 430 sys.setprofile(self.dispatcher) 434 sys.setprofile(None)
|
D | threading.py | 58 def setprofile(func): function 1006 _sys.setprofile(_profile_hook)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a5.rst | 439 sys.settrace(), sys.setprofile() and _lsprof.Profiler.enable() now properly 440 report :c:func:`PySys_Audit` error if "sys.setprofile" or "sys.settrace"
|
D | 3.7.0b1.rst | 713 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
|
D | 3.6.5rc1.rst | 611 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
|
D | 3.10.0a3.rst | 662 :func:`threading.setprofile` respectively. Patch by Mario Corchero.
|
/external/python/cpython3/Doc/library/ |
D | threading.rst | 160 .. 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`.
|
D | sys.rst | 745 Get the profiler function as set by :func:`setprofile`. 1257 .. function:: setprofile(profilefunc) 1279 .. audit-event:: sys.setprofile "" sys.setprofile
|
D | multiprocessing.rst | 1078 :func:`threading.settrace`, :func:`threading.setprofile`,
|
/external/python/cpython2/Doc/library/ |
D | threading.rst | 181 .. function:: setprofile(func) 186 The *func* will be passed to :func:`sys.setprofile` for each thread, before its
|
D | sys.rst | 478 Get the profiler function as set by :func:`setprofile`. 851 .. function:: setprofile(profilefunc)
|
D | multiprocessing.rst | 799 :func:`threading.settrace`, :func:`threading.setprofile`,
|
/external/python/cpython3/Doc/tutorial/ |
D | modules.rst | 328 'setprofile', 'setrecursionlimit', 'setswitchinterval', 'settrace', 'stderr',
|
/external/python/cpython2/Doc/tutorial/ |
D | modules.rst | 320 'py3kwarning', 'setcheckinterval', 'setdlopenflags', 'setprofile',
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.15rc1.rst | 1262 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.2.rst | 1061 :func:`sys.setprofile` and :func:`sys.settrace` functions still exist, and have
|
D | 3.10.rst | 1404 :func:`threading.setprofile` respectively.
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.2.rst | 1061 :func:`sys.setprofile` and :func:`sys.settrace` functions still exist, and have
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1370 setprofile(func) Sets a profile function for performance profiling.
|
12