| /llvm-project-15.0.7/lldb/scripts/android/ |
| H A D | host_art_bt.py | 23 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 D | SBThread.i | 328 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 D | TestTsanBasic.py | 70 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 D | lldbutil.py | 694 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 D | lldbutil.py | 1083 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 D | conditional_break.py | 20 if thread.GetNumFrames() >= 2:
|
| H A D | TestConditionalBreak.py | 71 if thread.GetNumFrames() >= 2:
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/thread/backtrace_limit/ |
| H A D | TestBacktraceLimit.py | 25 self.assertEqual(30, thread.GetNumFrames())
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump/ |
| H A D | TestMiniDump.py | 102 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 D | sb_thread.py | 29 obj.GetNumFrames()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/unwind/aarch64_unwind_pac/ |
| H A D | TestAArch64UnwindPAC.py | 38 self.assertEqual(thread.GetNumFrames(), len(backtrace))
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/unwind/noreturn/module-end/ |
| H A D | TestNoReturnModuleEnd.py | 32 self.assertEqual(thread.GetNumFrames(), len(backtrace))
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/wow64_minidump/ |
| H A D | TestWow64MiniDump.py | 64 self.assertGreaterEqual(thread.GetNumFrames(), 1)
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/inline-stepping/ |
| H A D | TestInlineStepping.py | 58 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 D | TestInferiorAssert.py | 202 thread.GetNumFrames() - 1).GetFrameID() 234 depth = thread.GetNumFrames()
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/print-obj/ |
| H A D | TestPrintObj.py | 77 depth = other_thread.GetNumFrames()
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/stl/ |
| H A D | TestStdCXXDisassembly.py | 28 depth = thread.GetNumFrames()
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/class_types/ |
| H A D | TestClassTypesDisassembly.py | 51 depth = thread.GetNumFrames()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/ubsan/basic/ |
| H A D | TestUbsanBasic.py | 57 for i in range(thread.GetNumFrames()):
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | StackFrameList.h | 33 uint32_t GetNumFrames(bool can_create = true);
|
| /llvm-project-15.0.7/lldb/test/API/api/multithreaded/ |
| H A D | test_listener_event_process_state.cpp.template | 45 uint32_t num_frames = thread.GetNumFrames();
|
| /llvm-project-15.0.7/lldb/test/API/macosx/universal/ |
| H A D | TestUniversal.py | 159 thread.GetNumFrames() > 1,
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBThread.h | 173 uint32_t GetNumFrames();
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/scripted_process/ |
| H A D | TestScriptedProcess.py | 127 self.assertGreater(thread.GetNumFrames(), 0)
|
| H A D | TestStackCoreScriptedProcess.py | 111 self.assertEqual(thread.GetNumFrames(), 5)
|