Home
last modified time | relevance | path

Searched refs:PyThreadState_GetFrame (Results 1 – 24 of 24) sorted by relevance

/aosp_15_r20/external/pytorch/torch/csrc/utils/
H A Dpythoncapi_compat.h312 PyThreadState_GetFrame(PyThreadState *tstate) in PyThreadState_GetFrame() function
323 PyFrameObject *frame = PyThreadState_GetFrame(tstate); in _PyThreadState_GetFrameBorrow()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dpystate.h72 PyAPI_FUNC(PyFrameObject*) PyThreadState_GetFrame(PyThreadState *tstate);
/aosp_15_r20/external/python/cpython3/Include/
Dpystate.h72 PyAPI_FUNC(PyFrameObject*) PyThreadState_GetFrame(PyThreadState *tstate);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dpystate.h72 PyAPI_FUNC(PyFrameObject*) PyThreadState_GetFrame(PyThreadState *tstate);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dpystate.h72 PyAPI_FUNC(PyFrameObject*) PyThreadState_GetFrame(PyThreadState *tstate);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dpystate.h72 PyAPI_FUNC(PyFrameObject*) PyThreadState_GetFrame(PyThreadState *tstate);
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dreflection.rst31 See also :c:func:`PyThreadState_GetFrame`.
Dframe.rst17 The :c:func:`PyEval_GetFrame` and :c:func:`PyThreadState_GetFrame` functions
Dinit.rst1159 .. c:function:: PyFrameObject* PyThreadState_GetFrame(PyThreadState *tstate)
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/python/
H A Dtraceback.cc47 for (PyFrameObject* py_frame = PyThreadState_GetFrame(thread_state); in Traceback()
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.11.0rc2.rst158 Skip over incomplete frames in :c:func:`PyThreadState_GetFrame`.
D3.9.0b1.rst899 The :c:func:`PyThreadState_GetFrame` function now returns a strong reference
D3.9.0a5.rst1156 Add :c:func:`PyThreadState_GetFrame` function: get the current frame of a
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c587 EXPORT_FUNC(PyThreadState_GetFrame)
/aosp_15_r20/external/python/cpython3/Doc/data/
Dstable_abi.dat611 function,PyThreadState_GetFrame,3.10,,
Dpython3.11.abi669 …<elf-symbol name='PyThreadState_GetFrame' type='func-type' binding='global-binding' visibility='de…
14757PyThreadState_GetFrame' mangled-name='PyThreadState_GetFrame' filepath='Python/pystate.c' line='12…
/aosp_15_r20/external/python/cpython3/Python/
D_warnings.c828 PyFrameObject *f = PyThreadState_GetFrame(tstate); in setup_context()
Derrors.c1506 PyFrameObject *frame = PyThreadState_GetFrame(tstate); in _PyErr_WriteUnraisableMsg()
Dpystate.c1276 PyThreadState_GetFrame(PyThreadState *tstate) in PyThreadState_GetFrame() function
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.11.rst2495 * ``frame``: removed, use :c:func:`PyThreadState_GetFrame` (function added
2506 Code defining ``PyThreadState_GetFrame()`` on Python 3.8 and older::
2509 static inline PyFrameObject* PyThreadState_GetFrame(PyThreadState *tstate)
D3.9.rst1292 Added :c:func:`PyThreadState_GetFrame` function to get the current frame of a
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml2175 [function.PyThreadState_GetFrame]
/aosp_15_r20/external/pytorch/functorch/csrc/dim/
H A Ddim.cpp1575 auto f = mpy::obj<PyFrameObject>::steal(PyThreadState_GetFrame(state)); in _dims()
/aosp_15_r20/external/python/cpython3/Modules/
D_testcapimodule.c5897 PyFrameObject*frame = PyThreadState_GetFrame(tstate); in test_tstate_capi()