Home
last modified time | relevance | path

Searched refs:f_trace (Results 1 - 6 of 6) sorted by relevance

/third_party/python/Lib/
H A Dbdb.py308 if caller_frame and not caller_frame.f_trace:
309 caller_frame.f_trace = self.trace_dispatch
332 frame.f_trace = self.trace_dispatch
350 del frame.f_trace
/third_party/python/Objects/
H A Dframeobject.c684 if (!f->f_trace) { in frame_setlineno()
803 PyObject* trace = f->f_trace; in frame_gettrace()
820 Py_XSETREF(f->f_trace, v); in frame_settrace()
831 {"f_trace", (getter)frame_gettrace, (setter)frame_settrace, NULL},
879 Py_CLEAR(f->f_trace); in frame_dealloc()
889 Py_VISIT(f->f_trace); in frame_traverse()
900 Py_CLEAR(f->f_trace); in frame_tp_clear()
1029 f->f_trace = NULL; in _PyFrame_New_NoTrack()
/third_party/python/Include/internal/
H A Dpycore_frame.h19 PyObject *f_trace; /* Trace function */ member
/third_party/python/Lib/test/
H A Dtest_frame.py124 sys._getframe(0).f_trace = True
H A Dtest_sys_settrace.py186 sys._getframe().f_back.f_trace = tracefunc
194 sys._getframe().f_back.f_trace = tracefunc
484 # Issue 20041: fix TypeError when f_trace is set to None.
486 sys._getframe().f_trace = None
1585 sys._getframe().f_trace = error_once
/third_party/python/Python/
H A Dsysmodule.c984 callback = frame->f_trace; in trace_trampoline()
994 Py_CLEAR(frame->f_trace); in trace_trampoline()
999 Py_XSETREF(frame->f_trace, result); in trace_trampoline()

Completed in 12 milliseconds