Home
last modified time | relevance | path

Searched refs:GetNumFrames (Results 1 – 25 of 40) sorted by relevance

12

/llvm-project-15.0.7/lldb/scripts/android/
H A Dhost_art_bt.py23 while lldb_frame_index < thread.GetNumFrames():
70 if lldb_frame_index < thread.GetNumFrames():
82 if lldb_frame_index >= thread.GetNumFrames():
127 if lldb_frame_index < thread.GetNumFrames():
135 if lldb_frame_index >= thread.GetNumFrames():
150 if lldb_frame_index >= thread.GetNumFrames():
209 if lldb_frame_index >= thread.GetNumFrames():
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBThread.i328 GetNumFrames ();
424 return self.GetNumFrames()
433 return int(self.sbthread.GetNumFrames())
437 if type(key) is int and key < self.sbthread.GetNumFrames():
456 …num_frames = property(GetNumFrames, None, doc='''A read only property that returns the number of s…
/llvm-project-15.0.7/lldb/test/API/functionalities/tsan/basic/
H A DTestTsanBasic.py70 for i in range(0, thread.GetNumFrames()):
105 for i in range(0, thread.GetNumFrames()):
117 for i in range(0, thread.GetNumFrames()):
/llvm-project-15.0.7/lldb/utils/lui/
H A Dlldbutil.py694 depth = thread.GetNumFrames()
711 return [GetFuncName(i) for i in range(thread.GetNumFrames())]
721 return [GetSymbol(i) for i in range(thread.GetNumFrames())]
731 return [GetPCAddress(i) for i in range(thread.GetNumFrames())]
742 return [GetFilename(i) for i in range(thread.GetNumFrames())]
752 return [GetLineNumber(i) for i in range(thread.GetNumFrames())]
763 return [GetModuleName(i) for i in range(thread.GetNumFrames())]
773 return [GetStackFrame(i) for i in range(thread.GetNumFrames())]
782 depth = thread.GetNumFrames()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py1083 depth = thread.GetNumFrames()
1100 return list(map(GetFuncName, list(range(thread.GetNumFrames()))))
1110 return list(map(GetSymbol, list(range(thread.GetNumFrames()))))
1120 return list(map(GetPCAddress, list(range(thread.GetNumFrames()))))
1131 return list(map(GetFilename, list(range(thread.GetNumFrames()))))
1141 return list(map(GetLineNumber, list(range(thread.GetNumFrames()))))
1152 return list(map(GetModuleName, list(range(thread.GetNumFrames()))))
1162 return list(map(GetStackFrame, list(range(thread.GetNumFrames()))))
1171 depth = thread.GetNumFrames()
/llvm-project-15.0.7/lldb/test/API/functionalities/conditional_break/
H A Dconditional_break.py20 if thread.GetNumFrames() >= 2:
H A DTestConditionalBreak.py71 if thread.GetNumFrames() >= 2:
/llvm-project-15.0.7/lldb/test/API/functionalities/thread/backtrace_limit/
H A DTestBacktraceLimit.py25 self.assertEqual(30, thread.GetNumFrames())
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump/
H A DTestMiniDump.py102 self.assertEqual(thread.GetNumFrames(), len(pc_list))
132 self.assertGreaterEqual(thread.GetNumFrames(), len(expected_stack))
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_thread.py29 obj.GetNumFrames()
/llvm-project-15.0.7/lldb/test/API/functionalities/unwind/aarch64_unwind_pac/
H A DTestAArch64UnwindPAC.py38 self.assertEqual(thread.GetNumFrames(), len(backtrace))
/llvm-project-15.0.7/lldb/test/API/functionalities/unwind/noreturn/module-end/
H A DTestNoReturnModuleEnd.py32 self.assertEqual(thread.GetNumFrames(), len(backtrace))
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/wow64_minidump/
H A DTestWow64MiniDump.py64 self.assertGreaterEqual(thread.GetNumFrames(), 1)
/llvm-project-15.0.7/lldb/test/API/functionalities/inline-stepping/
H A DTestInlineStepping.py58 expected_stack_depth = self.thread.GetNumFrames()
108 real_stack_depth = self.thread.GetNumFrames()
/llvm-project-15.0.7/lldb/test/API/functionalities/inferior-assert/
H A DTestInferiorAssert.py202 thread.GetNumFrames() - 1).GetFrameID()
234 depth = thread.GetNumFrames()
/llvm-project-15.0.7/lldb/test/API/lang/objc/print-obj/
H A DTestPrintObj.py77 depth = other_thread.GetNumFrames()
/llvm-project-15.0.7/lldb/test/API/lang/cpp/stl/
H A DTestStdCXXDisassembly.py28 depth = thread.GetNumFrames()
/llvm-project-15.0.7/lldb/test/API/lang/cpp/class_types/
H A DTestClassTypesDisassembly.py51 depth = thread.GetNumFrames()
/llvm-project-15.0.7/lldb/test/API/functionalities/ubsan/basic/
H A DTestUbsanBasic.py57 for i in range(thread.GetNumFrames()):
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DStackFrameList.h33 uint32_t GetNumFrames(bool can_create = true);
/llvm-project-15.0.7/lldb/test/API/api/multithreaded/
H A Dtest_listener_event_process_state.cpp.template45 uint32_t num_frames = thread.GetNumFrames();
/llvm-project-15.0.7/lldb/test/API/macosx/universal/
H A DTestUniversal.py159 thread.GetNumFrames() > 1,
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBThread.h173 uint32_t GetNumFrames();
/llvm-project-15.0.7/lldb/test/API/functionalities/scripted_process/
H A DTestScriptedProcess.py127 self.assertGreater(thread.GetNumFrames(), 0)
H A DTestStackCoreScriptedProcess.py111 self.assertEqual(thread.GetNumFrames(), 5)

12