Searched refs:PyEval_SetProfile (Results 1 – 15 of 15) sorted by relevance
/external/python/cpython2/Modules/ |
D | _lsprof.c | 702 PyEval_SetProfile(profiler_callback, (PyObject*)self); in profiler_enable() 734 PyEval_SetProfile(NULL, NULL); in profiler_disable() 760 PyEval_SetProfile(NULL, NULL); in profiler_dealloc()
|
D | _hotshot.c | 974 PyEval_SetProfile((Py_tracefunc) tracer_callback, (PyObject *)self); in do_start() 985 PyEval_SetProfile(NULL, NULL); in do_stop()
|
/external/python/cpython3/Modules/ |
D | _lsprof.c | 693 PyEval_SetProfile(profiler_callback, (PyObject*)self); in profiler_enable() 724 PyEval_SetProfile(NULL, NULL); in profiler_disable() 748 PyEval_SetProfile(NULL, NULL); in profiler_dealloc()
|
/external/python/cpython2/Include/ |
D | ceval.h | 23 PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *);
|
/external/python/cpython3/Include/ |
D | ceval.h | 32 PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *);
|
/external/python/cpython2/Python/ |
D | sysmodule.c | 346 PyEval_SetProfile(NULL, NULL); in profile_trampoline() 430 PyEval_SetProfile(NULL, NULL); in sys_setprofile() 432 PyEval_SetProfile(profile_trampoline, args); in sys_setprofile()
|
D | ceval.c | 4099 PyEval_SetProfile(Py_tracefunc func, PyObject *arg) in PyEval_SetProfile() function
|
/external/python/cpython3/Python/ |
D | sysmodule.c | 521 PyEval_SetProfile(NULL, NULL); in profile_trampoline() 600 PyEval_SetProfile(NULL, NULL); in sys_setprofile() 602 PyEval_SetProfile(profile_trampoline, args); in sys_setprofile()
|
D | ceval.c | 4314 PyEval_SetProfile(Py_tracefunc func, PyObject *arg) in PyEval_SetProfile() function
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 833 "PyEval_SetProfile"
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 767 PyEval_SetProfile:void::: 768 PyEval_SetProfile:Py_tracefunc:func:: 769 PyEval_SetProfile:PyObject*:obj:+1:
|
/external/python/cpython2/Doc/c-api/ |
D | init.rst | 975 The type of the trace function registered using :c:func:`PyEval_SetProfile` and 1054 .. c:function:: void PyEval_SetProfile(Py_tracefunc func, PyObject *obj) 1067 :c:func:`PyEval_SetProfile`, except the tracing function does receive line-number
|
/external/python/cpython3/Doc/c-api/ |
D | init.rst | 1261 The type of the trace function registered using :c:func:`PyEval_SetProfile` and 1350 .. c:function:: void PyEval_SetProfile(Py_tracefunc func, PyObject *obj) 1363 :c:func:`PyEval_SetProfile`, except the tracing function does receive line-number
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.2.rst | 1060 :c:func:`PyEval_SetProfile` and :c:func:`PyEval_SetTrace`. The existing
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.2.rst | 1060 :c:func:`PyEval_SetProfile` and :c:func:`PyEval_SetTrace`. The existing
|