Home
last modified time | relevance | path

Searched refs:PyEval_SetTrace (Results 1 – 19 of 19) sorted by relevance

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dceval.h7 PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dceval.h7 PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dceval.h7 PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dceval.h7 PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dceval.h7 PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);
/aosp_15_r20/external/python/cpython2/Include/
Dceval.h24 PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);
/aosp_15_r20/external/python/cpython2/Python/
Dsysmodule.c369 PyEval_SetTrace(NULL, NULL); in trace_trampoline()
391 PyEval_SetTrace(NULL, NULL); in sys_settrace()
393 PyEval_SetTrace(trace_trampoline, args); in sys_settrace()
Dceval.c4116 PyEval_SetTrace(Py_tracefunc func, PyObject *arg) in PyEval_SetTrace() function
/aosp_15_r20/external/python/cpython2/Modules/
D_hotshot.c972 PyEval_SetTrace((Py_tracefunc) tracer_callback, (PyObject *)self); in do_start()
983 PyEval_SetTrace(NULL, NULL); in do_stop()
/aosp_15_r20/external/python/cpython2/PC/os2emx/
Dpython27.def834 "PyEval_SetTrace"
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat799 PyEval_SetTrace:void:::
800 PyEval_SetTrace:Py_tracefunc:func::
801 PyEval_SetTrace:PyObject*:obj:+1:
Dpython3.11.abi217 …<elf-symbol name='PyEval_SetTrace' type='func-type' binding='global-binding' visibility='default-v…
11250PyEval_SetTrace' mangled-name='PyEval_SetTrace' filepath='Python/ceval.c' line='7043' column='1' v…
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dinit.rst976 :c:func:`PyEval_SetTrace`. The first parameter is the object passed to the
1064 .. c:function:: void PyEval_SetTrace(Py_tracefunc func, PyObject *obj)
1069 trace function registered using :c:func:`PyEval_SetTrace` will not receive
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dinit.rst1205 See also :c:func:`PyEval_SetTrace` and :c:func:`PyEval_SetProfile`
1567 :c:func:`PyEval_SetTrace`. The first parameter is the object passed to the
1669 .. c:function:: void PyEval_SetTrace(Py_tracefunc func, PyObject *obj)
1674 objects being called. Any trace function registered using :c:func:`PyEval_SetTrace`
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.9.0a5.rst1195 :c:func:`PyEval_SetTrace`, log the error as an unraisable exception.
/aosp_15_r20/external/python/cpython3/Modules/
D_testcapimodule.c6344 PyEval_SetTrace(record_func, list); in settrace_to_record()
6371 PyEval_SetTrace(error_func, list); in settrace_to_error()
/aosp_15_r20/external/python/cpython2/Doc/whatsnew/
D2.2.rst1060 :c:func:`PyEval_SetProfile` and :c:func:`PyEval_SetTrace`. The existing
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D2.2.rst1060 :c:func:`PyEval_SetProfile` and :c:func:`PyEval_SetTrace`. The existing
/aosp_15_r20/external/python/cpython3/Python/
Dceval.c7043 PyEval_SetTrace(Py_tracefunc func, PyObject *arg) function