Searched refs:PyCode_Addr2Line (Results 1 – 25 of 28) sorted by relevance
12
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/python/ |
H A D | traceback.cc | 92 PyCode_Addr2Line(frame.first, frame.second)}); in Frames() 128 /*tb_lineno=*/PyCode_Addr2Line(frame.first, frame.second)); in AsPythonTraceback() 190 return PyCode_Addr2Line(reinterpret_cast<PyCodeObject*>(code.ptr()), in BuildTracebackSubmodule()
|
H A D | pprof_profile_builder.cc | 62 line->set_line(PyCode_Addr2Line(code, instruction)); in LocationId()
|
/aosp_15_r20/external/python/cpython2/Include/ |
D | code.h | 83 PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/ |
D | code.h | 168 PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/ |
D | code.h | 168 PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
|
/aosp_15_r20/external/python/cpython3/Include/cpython/ |
D | code.h | 168 PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/ |
D | code.h | 168 PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/ |
D | code.h | 168 PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
|
/aosp_15_r20/external/python/cpython3/Python/ |
D | frame.c | 169 return PyCode_Addr2Line(frame->f_code, addr); in _PyInterpreterFrame_GetLine()
|
/aosp_15_r20/external/pytorch/torch/csrc/profiler/python/ |
H A D | combined_traceback.cpp | 91 auto lineno = PyCode_Addr2Line(f_code, f.lasti); in appendSymbolized()
|
/aosp_15_r20/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 113 PyCode_Addr2Line
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/python/ |
H A D | python_tracer.cpp | 33 size_t line = PyCode_Addr2Line(code.get(), PyFrame_GetLasti(frame)); in _pythonCallstack()
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | code.rst | 64 .. c:function:: int PyCode_Addr2Line(PyCodeObject *co, int byte_offset)
|
/aosp_15_r20/external/python/cpython2/Objects/ |
D | lnotab_notes.txt | 43 (In C, this is implemented by PyCode_Addr2Line().) In order for this to work,
|
D | codeobject.c | 699 PyCode_Addr2Line(PyCodeObject *co, int addrq) in PyCode_Addr2Line() function
|
D | frameobject.c | 69 return PyCode_Addr2Line(f->f_code, f->f_lasti); in PyFrame_GetLineNumber()
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | lnotab_notes.txt | 140 (In C, this is implemented by PyCode_Addr2Line().) In order for this to work,
|
D | codeobject.c | 766 PyCode_Addr2Line(PyCodeObject *co, int addrq) in PyCode_Addr2Line() function
|
/aosp_15_r20/external/python/cpython2/PC/os2emx/ |
D | python27.def | 237 "PyCode_Addr2Line"
|
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/ |
D | 3.6.rst | 2166 ``PyFrame_GetLineNumber()`` or ``PyCode_Addr2Line()`` are not affected.
|
D | 3.10.rst | 1964 instead (like :c:func:`PyCode_Addr2Line` for example). Notice as well that the
|
D | 2.3.rst | 2002 instead call ``PyCode_Addr2Line(f->f_code, f->f_lasti)``. This will have the
|
D | 3.11.rst | 2446 Code using ``f_lasti`` with ``PyCode_Addr2Line()`` should use
|
/aosp_15_r20/external/python/cpython2/Doc/whatsnew/ |
D | 2.3.rst | 2002 instead call ``PyCode_Addr2Line(f->f_code, f->f_lasti)``. This will have the
|
/aosp_15_r20/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7a1.rst | 5209 PyCode_Addr2Line().
|
12