Home
last modified time | relevance | path

Searched refs:f_trace (Results 1 – 20 of 20) sorted by relevance

/external/python/cpython3/Objects/
Dframeobject.c36 if (f->f_trace) in PyFrame_GetLineNumber()
116 if (!f->f_trace) { in frame_setlineno()
377 PyObject* trace = f->f_trace; in frame_gettrace()
396 Py_XSETREF(f->f_trace, v); in frame_settrace()
482 Py_CLEAR(f->f_trace); in frame_dealloc()
510 Py_VISIT(f->f_trace); in frame_traverse()
541 Py_CLEAR(f->f_trace); in frame_tp_clear()
743 f->f_trace = NULL; in _PyFrame_New_NoTrack()
/external/python/cpython2/Objects/
Dframeobject.c66 if (f->f_trace) in PyFrame_GetLineNumber()
140 if (!f->f_trace) { in frame_setlineno()
390 PyObject* trace = f->f_trace; in frame_gettrace()
409 Py_XSETREF(f->f_trace, v); in frame_settrace()
506 Py_CLEAR(f->f_trace); in frame_dealloc()
537 Py_VISIT(f->f_trace); in frame_traverse()
573 Py_CLEAR(f->f_trace); in frame_clear()
744 f->f_trace = NULL; in PyFrame_New()
/external/python/cpython2/Lib/
Dbdb.py200 if caller_frame and not caller_frame.f_trace:
201 caller_frame.f_trace = self.trace_dispatch
221 frame.f_trace = self.trace_dispatch
235 del frame.f_trace
/external/python/cpython3/Lib/
Dbdb.py304 if caller_frame and not caller_frame.f_trace:
305 caller_frame.f_trace = self.trace_dispatch
328 frame.f_trace = self.trace_dispatch
346 del frame.f_trace
/external/python/cpython2/Include/
Dframeobject.h28 PyObject *f_trace; /* Trace function */ member
/external/python/cpython3/Include/
Dframeobject.h29 PyObject *f_trace; /* Trace function */ member
/external/python/cpython2/Python/
Dsysmodule.c364 callback = frame->f_trace; in trace_trampoline()
370 Py_CLEAR(frame->f_trace); in trace_trampoline()
374 PyObject *temp = frame->f_trace; in trace_trampoline()
375 frame->f_trace = NULL; in trace_trampoline()
377 frame->f_trace = result; in trace_trampoline()
/external/python/cpython2/Lib/test/
Dtest_sys_settrace.py131 sys._getframe().f_back.f_trace = tracefunc
139 sys._getframe().f_back.f_trace = tracefunc
405 sys._getframe().f_trace = None
/external/python/cpython3/Lib/test/
Dtest_sys_settrace.py151 sys._getframe().f_back.f_trace = tracefunc
159 sys._getframe().f_back.f_trace = tracefunc
445 sys._getframe().f_trace = None
/external/python/cpython3/Python/
Dsysmodule.c538 callback = frame->f_trace; in trace_trampoline()
544 Py_CLEAR(frame->f_trace); in trace_trampoline()
548 Py_XSETREF(frame->f_trace, result); in trace_trampoline()
/external/python/cpython2/Tools/gdb/
Dlibpython.py921 f_trace = self.field('f_trace')
922 if long(f_trace) != 0:
/external/python/cpython3/Tools/gdb/
Dlibpython.py933 f_trace = self.field('f_trace')
934 if long(f_trace) != 0:
/external/python/cpython2/Doc/library/
Dinspect.rst165 | | f_trace | tracing function for this | |
/external/python/cpython2/Misc/NEWS.d/
D2.7.12rc1.rst7 Fixed TypeError when frame.f_trace is set to None. Patch by Xavier de Gaye.
/external/python/cpython3/Misc/NEWS.d/
D3.5.2rc1.rst17 Fixed TypeError when frame.f_trace is set to None. Patch by Xavier de Gaye.
D3.6.0a1.rst7 Fixed TypeError when frame.f_trace is set to None. Patch by Xavier de Gaye.
/external/python/cpython3/Doc/library/
Dinspect.rst135 | | f_trace | tracing function for this |
/external/python/cpython2/Doc/reference/
Ddatamodel.rst1006 single: f_trace (frame attribute)
1012 Special writable attributes: :attr:`f_trace`, if not ``None``, is a function
/external/python/cpython3/Doc/reference/
Ddatamodel.rst974 single: f_trace (frame attribute)
979 Special writable attributes: :attr:`f_trace`, if not ``None``, is a function
/external/python/cpython2/Misc/
Dcheatsheet1304 f_trace (function/None, R/W): debug hook called at start of each source line