Home
last modified time | relevance | path

Searched refs:PyFrame_GetCode (Results 1 – 14 of 14) sorted by relevance

/third_party/python/Include/
Dpyframe.h17 PyAPI_FUNC(PyCodeObject *) PyFrame_GetCode(PyFrameObject *frame);
/third_party/python/Doc/c-api/
Dreflection.rst45 .. c:function:: int PyFrame_GetCode(PyFrameObject *frame)
/third_party/python/Python/
Dtraceback.c564 PyCodeObject *code = PyFrame_GetCode(tb->tb_frame); in tb_printinternal()
777 PyCodeObject *code = PyFrame_GetCode(frame); in dump_frame()
D_warnings.c783 PyCodeObject *code = PyFrame_GetCode(frame); in is_internal_frame()
857 PyCodeObject *code = PyFrame_GetCode(f); in setup_context()
Dimport.c1288 PyCodeObject *code = PyFrame_GetCode(frame); in remove_importlib_frames()
/third_party/python/Modules/
D_lsprof.c408 PyCodeObject *code = PyFrame_GetCode(frame); in profiler_callback()
418 PyCodeObject *code = PyFrame_GetCode(frame); in profiler_callback()
D_tracemalloc.c311 PyCodeObject *code = PyFrame_GetCode(pyframe); in tracemalloc_get_frame()
/third_party/python/Doc/data/
Dstable_abi.dat276 function,PyFrame_GetCode,3.10,
/third_party/python/PC/
Dpython3dll.c269 EXPORT_FUNC(PyFrame_GetCode)
/third_party/python/Objects/
Dframeobject.c1161 PyFrame_GetCode(PyFrameObject *frame) in PyFrame_GetCode() function
Dtypeobject.c8959 PyCodeObject *code = PyFrame_GetCode(frame); in super_init()
/third_party/python/Misc/NEWS.d/
D3.9.0b1.rst937 New :c:func:`PyFrame_GetCode` function: return a borrowed reference to the
/third_party/python/Misc/
Dstable_abi.txt2093 function PyFrame_GetCode
/third_party/python/Doc/whatsnew/
D3.9.rst1268 * Added :c:func:`PyFrame_GetCode` function: get a frame code.