Searched refs:Py_tracefunc (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython2/Include/ |
D | pystate.h | 45 typedef int (*Py_tracefunc)(PyObject *, struct _frame *, int, PyObject *); typedef 70 Py_tracefunc c_profilefunc; 71 Py_tracefunc c_tracefunc;
|
D | ceval.h | 23 PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *); 24 PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);
|
/external/python/cpython3/Include/ |
D | pystate.h | 177 typedef int (*Py_tracefunc)(PyObject *, struct _frame *, int, PyObject *); typedef 233 Py_tracefunc c_profilefunc; 234 Py_tracefunc c_tracefunc;
|
D | ceval.h | 32 PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *); 33 PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);
|
/external/python/cpython3/Python/ |
D | ceval.c | 45 static int call_trace(Py_tracefunc, PyObject *, 48 static int call_trace_protected(Py_tracefunc, PyObject *, 51 static void call_exc_trace(Py_tracefunc, PyObject *, 53 static int maybe_call_line_trace(Py_tracefunc, PyObject *, 4192 call_exc_trace(Py_tracefunc func, PyObject *self, in call_exc_trace() 4221 call_trace_protected(Py_tracefunc func, PyObject *obj, in call_trace_protected() 4243 call_trace(Py_tracefunc func, PyObject *obj, in call_trace() 4278 maybe_call_line_trace(Py_tracefunc func, PyObject *obj, in maybe_call_line_trace() 4314 PyEval_SetProfile(Py_tracefunc func, PyObject *arg) in PyEval_SetProfile() 4331 PyEval_SetTrace(Py_tracefunc func, PyObject *arg) in PyEval_SetTrace()
|
/external/python/cpython2/Python/ |
D | ceval.c | 129 static int call_trace(Py_tracefunc, PyObject *, PyFrameObject *, 131 static int call_trace_protected(Py_tracefunc, PyObject *, 133 static void call_exc_trace(Py_tracefunc, PyObject *, PyFrameObject *); 134 static int maybe_call_line_trace(Py_tracefunc, PyObject *, 3987 call_exc_trace(Py_tracefunc func, PyObject *self, PyFrameObject *f) in call_exc_trace() 4013 call_trace_protected(Py_tracefunc func, PyObject *obj, PyFrameObject *frame, in call_trace_protected() 4034 call_trace(Py_tracefunc func, PyObject *obj, PyFrameObject *frame, in call_trace() 4070 maybe_call_line_trace(Py_tracefunc func, PyObject *obj, in maybe_call_line_trace() 4099 PyEval_SetProfile(Py_tracefunc func, PyObject *arg) in PyEval_SetProfile() 4116 PyEval_SetTrace(Py_tracefunc func, PyObject *arg) in PyEval_SetTrace()
|
/external/python/cpython3/Doc/c-api/ |
D | init.rst | 1259 .. c:type:: int (*Py_tracefunc)(PyObject *obj, PyFrameObject *frame, int what, PyObject *arg) 1293 The value of the *what* parameter to a :c:type:`Py_tracefunc` function when a new 1302 The value of the *what* parameter to a :c:type:`Py_tracefunc` function when an 1313 The value passed as the *what* parameter to a :c:type:`Py_tracefunc` function 1320 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a 1326 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C 1332 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C 1338 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C 1344 The value for the *what* parameter to :c:type:`Py_tracefunc` functions (but not 1350 .. c:function:: void PyEval_SetProfile(Py_tracefunc func, PyObject *obj) [all …]
|
/external/python/cpython2/Doc/c-api/ |
D | init.rst | 973 .. c:type:: int (*Py_tracefunc)(PyObject *obj, PyFrameObject *frame, int what, PyObject *arg) 1006 The value of the *what* parameter to a :c:type:`Py_tracefunc` function when a new 1015 The value of the *what* parameter to a :c:type:`Py_tracefunc` function when an 1032 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a 1038 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C 1044 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C 1050 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C 1054 .. c:function:: void PyEval_SetProfile(Py_tracefunc func, PyObject *obj) 1064 .. c:function:: void PyEval_SetTrace(Py_tracefunc func, PyObject *obj)
|
/external/python/cpython2/Modules/ |
D | _hotshot.c | 972 PyEval_SetTrace((Py_tracefunc) tracer_callback, (PyObject *)self); in do_start() 974 PyEval_SetProfile((Py_tracefunc) tracer_callback, (PyObject *)self); in do_start()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 768 PyEval_SetProfile:Py_tracefunc:func:: 772 PyEval_SetTrace:Py_tracefunc:func::
|