Searched refs:Py_tracefunc (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Include/cpython/ |
D | ceval.h | 5 PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *); 6 PyAPI_DATA(int) _PyEval_SetProfile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg); 7 PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *); 8 PyAPI_FUNC(int) _PyEval_SetTrace(PyThreadState *tstate, Py_tracefunc func, PyObject *arg);
|
D | pystate.h | 13 typedef int (*Py_tracefunc)(PyObject *, PyFrameObject *, int, PyObject *); typedef 82 Py_tracefunc c_profilefunc; 83 Py_tracefunc c_tracefunc;
|
/third_party/python/Python/ |
D | ceval.c | 67 static int call_trace(Py_tracefunc, PyObject *, 71 static int call_trace_protected(Py_tracefunc, PyObject *, 75 static void call_exc_trace(Py_tracefunc, PyObject *, 78 static int maybe_call_line_trace(Py_tracefunc, PyObject *, 5385 call_exc_trace(Py_tracefunc func, PyObject *self, in call_exc_trace() 5417 call_trace_protected(Py_tracefunc func, PyObject *obj, in call_trace_protected() 5449 call_trace(Py_tracefunc func, PyObject *obj, in call_trace() 5493 maybe_call_line_trace(Py_tracefunc func, PyObject *obj, in maybe_call_line_trace() 5520 _PyEval_SetProfile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg) in _PyEval_SetProfile() 5551 PyEval_SetProfile(Py_tracefunc func, PyObject *arg) in PyEval_SetProfile() [all …]
|
/third_party/python/Doc/c-api/ |
D | init.rst | 1494 .. c:type:: int (*Py_tracefunc)(PyObject *obj, PyFrameObject *frame, int what, PyObject *arg) 1528 The value of the *what* parameter to a :c:type:`Py_tracefunc` function when a new 1537 The value of the *what* parameter to a :c:type:`Py_tracefunc` function when an 1548 The value passed as the *what* parameter to a :c:type:`Py_tracefunc` function 1555 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a 1561 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C 1567 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C 1573 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C 1579 The value for the *what* parameter to :c:type:`Py_tracefunc` functions (but not 1585 .. c:function:: void PyEval_SetProfile(Py_tracefunc func, PyObject *obj) [all …]
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 796 PyEval_SetProfile:Py_tracefunc:func:: 800 PyEval_SetTrace:Py_tracefunc:func::
|