Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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():
/openbsd-src/gnu/llvm/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…
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py1010 depth = thread.GetNumFrames()
1027 return list(map(GetFuncName, list(range(thread.GetNumFrames()))))
1037 return list(map(GetSymbol, list(range(thread.GetNumFrames()))))
1047 return list(map(GetPCAddress, list(range(thread.GetNumFrames()))))
1058 return list(map(GetFilename, list(range(thread.GetNumFrames()))))
1068 return list(map(GetLineNumber, list(range(thread.GetNumFrames()))))
1079 return list(map(GetModuleName, list(range(thread.GetNumFrames()))))
1089 return list(map(GetStackFrame, list(range(thread.GetNumFrames()))))
1098 depth = thread.GetNumFrames()
H A Dconcurrent_base.py63 x.GetFrameAtIndex(i)) for i in range(x.GetNumFrames())])
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DStackFrameList.h33 uint32_t GetNumFrames(bool can_create = true);
H A DThread.h396 return GetStackFrameList()->GetNumFrames(); in GetStackFrameCount()
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBThread.h173 uint32_t GetNumFrames();
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Ddiagnose_unwind.py84 if cur_thread.GetNumFrames() < 2:
H A Dlldbtk.py88 num_frames = self.thread.GetNumFrames()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DStackFrameList.cpp619 uint32_t StackFrameList::GetNumFrames(bool can_create) { in GetNumFrames() function in StackFrameList
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBThread.cpp1089 uint32_t SBThread::GetNumFrames() { in GetNumFrames() function in SBThread
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A Dlldb-vscode.cpp2499 const auto totalFrames = thread.GetNumFrames(); in request_stackTrace()