Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dpyframe.h17 PyAPI_FUNC(PyCodeObject *) PyFrame_GetCode(PyFrameObject *frame);
/external/python/cpython3/Doc/c-api/
Dreflection.rst45 .. c:function:: int PyFrame_GetCode(PyFrameObject *frame)
/external/python/cpython3/Modules/
D_lsprof.c391 PyCodeObject *code = PyFrame_GetCode(frame); in profiler_callback()
401 PyCodeObject *code = PyFrame_GetCode(frame); in profiler_callback()
D_tracemalloc.c311 PyCodeObject *code = PyFrame_GetCode(pyframe); in tracemalloc_get_frame()
/external/python/cpython3/Python/
Dtraceback.c563 PyCodeObject *code = PyFrame_GetCode(tb->tb_frame); in tb_printinternal()
756 PyCodeObject *code = PyFrame_GetCode(frame); in dump_frame()
D_warnings.c789 PyCodeObject *code = PyFrame_GetCode(frame); in is_internal_frame()
863 PyCodeObject *code = PyFrame_GetCode(f); in setup_context()
Dimport.c1542 PyCodeObject *code = PyFrame_GetCode(frame); in remove_importlib_frames()
/external/python/cpython3/Objects/
Dframeobject.c1210 PyFrame_GetCode(PyFrameObject *frame) in PyFrame_GetCode() function
Dtypeobject.c8164 PyCodeObject *code = PyFrame_GetCode(frame); in super_init()
/external/python/cpython3/Misc/NEWS.d/
D3.9.0b1.rst937 New :c:func:`PyFrame_GetCode` function: return a borrowed reference to the
/external/python/cpython3/Doc/whatsnew/
D3.9.rst1245 * Added :c:func:`PyFrame_GetCode` function: get a frame code.