Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dframeobject.c66 if (f->f_trace) in PyFrame_GetLineNumber()
127 if (!f->f_trace) in frame_setlineno()
354 PyObject* trace = f->f_trace; in frame_gettrace()
372 old_value = f->f_trace; in frame_settrace()
374 f->f_trace = v; in frame_settrace()
472 Py_CLEAR(f->f_trace); in frame_dealloc()
503 Py_VISIT(f->f_trace); in frame_traverse()
539 Py_CLEAR(f->f_trace); in frame_clear()
710 f->f_trace = NULL; in PyFrame_New()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dframeobject.c66 if (f->f_trace) in PyFrame_GetLineNumber()
127 if (!f->f_trace) in frame_setlineno()
352 PyObject* trace = f->f_trace; in frame_gettrace()
370 old_value = f->f_trace; in frame_settrace()
372 f->f_trace = v; in frame_settrace()
470 Py_CLEAR(f->f_trace); in frame_dealloc()
501 Py_VISIT(f->f_trace); in frame_traverse()
537 Py_CLEAR(f->f_trace); in frame_clear()
708 f->f_trace = NULL; in PyFrame_New()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dframeobject.h28 PyObject *f_trace; /* Trace function */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dframeobject.h28 PyObject *f_trace; /* Trace function */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dsysmodule.c364 callback = frame->f_trace; in trace_trampoline()
370 Py_XDECREF(frame->f_trace); in trace_trampoline()
371 frame->f_trace = NULL; in trace_trampoline()
375 PyObject *temp = frame->f_trace; in trace_trampoline()
376 frame->f_trace = NULL; in trace_trampoline()
378 frame->f_trace = result; in trace_trampoline()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/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()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_sys_settrace.py118 sys._getframe().f_back.f_trace = tracefunc
126 sys._getframe().f_back.f_trace = tracefunc
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dbdb.py208 frame.f_trace = self.trace_dispatch
222 del frame.f_trace
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/
Dlibpython.py872 f_trace = self.field('f_trace')
873 if long(f_trace) != 0: