Searched refs:Py_tracefunc (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Include/cpython/ |
D | ceval.h | 9 PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *); 10 PyAPI_DATA(int) _PyEval_SetProfile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg); 11 PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *); 12 PyAPI_FUNC(int) _PyEval_SetTrace(PyThreadState *tstate, Py_tracefunc func, PyObject *arg);
|
D | pystate.h | 19 typedef int (*Py_tracefunc)(PyObject *, PyFrameObject *, int, PyObject *); typedef 73 Py_tracefunc c_profilefunc; 74 Py_tracefunc c_tracefunc;
|
/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/Python/ |
D | ceval.c | 59 static int call_trace(Py_tracefunc, PyObject *, 62 static int call_trace_protected(Py_tracefunc, PyObject *, 65 static void call_exc_trace(Py_tracefunc, PyObject *, 67 static int maybe_call_line_trace(Py_tracefunc, PyObject *, 4611 call_exc_trace(Py_tracefunc func, PyObject *self, in call_exc_trace() 4641 call_trace_protected(Py_tracefunc func, PyObject *obj, in call_trace_protected() 4663 call_trace(Py_tracefunc func, PyObject *obj, in call_trace() 4698 maybe_call_line_trace(Py_tracefunc func, PyObject *obj, in maybe_call_line_trace() 4734 _PyEval_SetProfile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg) in _PyEval_SetProfile() 4765 PyEval_SetProfile(Py_tracefunc func, PyObject *arg) in PyEval_SetProfile() [all …]
|
/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/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/cpython3/Doc/c-api/ |
D | init.rst | 1457 .. c:type:: int (*Py_tracefunc)(PyObject *obj, PyFrameObject *frame, int what, PyObject *arg) 1491 The value of the *what* parameter to a :c:type:`Py_tracefunc` function when a new 1500 The value of the *what* parameter to a :c:type:`Py_tracefunc` function when an 1511 The value passed as the *what* parameter to a :c:type:`Py_tracefunc` function 1518 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a 1524 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C 1530 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C 1536 The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C 1542 The value for the *what* parameter to :c:type:`Py_tracefunc` functions (but not 1548 .. c:function:: void PyEval_SetProfile(Py_tracefunc func, PyObject *obj) [all …]
|
/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 | 796 PyEval_SetProfile:Py_tracefunc:func:: 800 PyEval_SetTrace:Py_tracefunc:func::
|