Home
last modified time | relevance | path

Searched refs:GetFrameID (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/functionalities/inferior-assert/
H A DTestInferiorAssert.py202 thread.GetNumFrames() - 1).GetFrameID()
214 str(frame.GetFrameID()), RUN_SUCCEEDED)
222 if frame.GetFrameID() == 0:
225 if lastframeID == frame.GetFrameID():
244 frame_id = frame.GetFrameID()
/llvm-project-15.0.7/lldb/test/API/python_api/lldbutil/frame/
H A DTestFrameUtils.py52 self.assertTrue(parent and parent.GetFrameID() == frame1.GetFrameID())
/llvm-project-15.0.7/lldb/test/API/lang/c/array_types/
H A DTestArrayTypes.py152 frame.GetFrameID(),
156 frame.GetFrameID()])
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_frame.py9 obj.GetFrameID()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBFrame.i66 GetFrameID () const;
356 …idx = property(GetFrameID, None, doc='''A read only property that returns the zero based stack fra…
/llvm-project-15.0.7/lldb/test/API/functionalities/unwind/noreturn/
H A DTestNoreturnUnwind.py51 print(" %d %s" % (f.GetFrameID(), f.GetFunctionName()))
/llvm-project-15.0.7/lldb/test/API/functionalities/unwind/sigtramp/
H A DTestSigtrampUnwind.py80 print(" %d %s" % (f.GetFrameID(), f.GetFunctionName()))
/llvm-project-15.0.7/lldb/examples/python/
H A Ddiagnose_unwind.py249 …embly of %s, frame %d, address 0x%x" % (frame.GetFunctionName(), frame.GetFrameID(), frame.GetPC()…
285 … print("Unwind instructions for %s, frame %d" % (frame.GetFunctionName(), frame.GetFrameID()))
H A Dlldbtk.py56 id = self.frame.GetFrameID()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DLLDBUtils.cpp83 frame.GetFrameID()); in MakeVSCodeFrameID()
H A Dlldb-vscode.cpp1924 frame.GetThread().SetSelectedFrame(frame.GetFrameID()); in request_scopes()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBFrame.h33 uint32_t GetFrameID() const;
/llvm-project-15.0.7/lldb/utils/lui/
H A Dlldbutil.py846 if f.GetFrameID() == frame.GetFrameID():
/llvm-project-15.0.7/lldb/examples/darwin/heap_find/
H A Dheap.py393 …print('frame #%u: [%#x - %#x) %s' % (frame.GetFrameID(), var.load_addr, var.load_addr + byte_size,…
445 type_str += ' in frame #%u of thread #%u: tid %#x' % (frame.GetFrameID(
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py1310 if f.GetFrameID() == frame.GetFrameID():
/llvm-project-15.0.7/lldb/source/API/
H A DSBFrame.cpp294 uint32_t SBFrame::GetFrameID() const { in GetFrameID() function in SBFrame