Home
last modified time | relevance | path

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

12

/external/llvm-project/lldb/scripts/android/
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():
/external/llvm-project/lldb/bindings/interface/
DSBThread.i325 GetNumFrames ();
415 return self.GetNumFrames()
424 return int(self.sbthread.GetNumFrames())
428 if type(key) is int and key < self.sbthread.GetNumFrames():
447 …num_frames = property(GetNumFrames, None, doc='''A read only property that returns the number of s…
/external/llvm-project/lldb/utils/lui/
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()
/external/llvm-project/lldb/test/API/functionalities/tsan/basic/
DTestTsanBasic.py71 for i in range(0, thread.GetNumFrames()):
106 for i in range(0, thread.GetNumFrames()):
118 for i in range(0, thread.GetNumFrames()):
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dlldbutil.py993 depth = thread.GetNumFrames()
1010 return list(map(GetFuncName, list(range(thread.GetNumFrames()))))
1020 return list(map(GetSymbol, list(range(thread.GetNumFrames()))))
1030 return list(map(GetPCAddress, list(range(thread.GetNumFrames()))))
1041 return list(map(GetFilename, list(range(thread.GetNumFrames()))))
1051 return list(map(GetLineNumber, list(range(thread.GetNumFrames()))))
1062 return list(map(GetModuleName, list(range(thread.GetNumFrames()))))
1072 return list(map(GetStackFrame, list(range(thread.GetNumFrames()))))
1081 depth = thread.GetNumFrames()
/external/llvm-project/lldb/test/API/functionalities/conditional_break/
Dconditional_break.py20 if thread.GetNumFrames() >= 2:
DTestConditionalBreak.py74 if thread.GetNumFrames() >= 2:
/external/llvm-project/lldb/test/API/functionalities/thread/backtrace_limit/
DTestBacktraceLimit.py27 self.assertEqual(30, thread.GetNumFrames())
/external/llvm-project/lldb/test/API/functionalities/postmortem/minidump/
DTestMiniDump.py104 self.assertEqual(thread.GetNumFrames(), len(pc_list))
134 self.assertGreaterEqual(thread.GetNumFrames(), len(expected_stack))
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_thread.py29 obj.GetNumFrames()
/external/llvm-project/lldb/test/API/functionalities/unwind/noreturn/module-end/
DTestNoReturnModuleEnd.py32 self.assertEqual(thread.GetNumFrames(), len(backtrace))
/external/llvm-project/lldb/test/API/functionalities/postmortem/wow64_minidump/
DTestWow64MiniDump.py66 self.assertGreaterEqual(thread.GetNumFrames(), 1)
/external/llvm-project/lldb/source/Target/
DStackFrameList.cpp632 uint32_t StackFrameList::GetNumFrames(bool can_create) { in GetNumFrames() function in StackFrameList
866 if (!curr_up || curr_up->GetNumFrames(false) == 0) { in Merge()
874 if (!prev_sp || prev_sp->GetNumFrames(false) == 0) { in Merge()
885 const uint32_t num_curr_frames = curr_up->GetNumFrames(false); in Merge()
909 const uint32_t num_prev_frames = prev_sp->GetNumFrames(false); in Merge()
/external/llvm-project/lldb/test/API/functionalities/inline-stepping/
DTestInlineStepping.py60 expected_stack_depth = self.thread.GetNumFrames()
110 real_stack_depth = self.thread.GetNumFrames()
/external/llvm-project/lldb/test/API/functionalities/inferior-assert/
DTestInferiorAssert.py210 thread.GetNumFrames() - 1).GetFrameID()
242 depth = thread.GetNumFrames()
/external/llvm-project/lldb/test/API/lang/objc/print-obj/
DTestPrintObj.py80 depth = other_thread.GetNumFrames()
/external/llvm-project/lldb/test/API/lang/cpp/class_types/
DTestClassTypesDisassembly.py53 depth = thread.GetNumFrames()
/external/llvm-project/lldb/test/API/lang/cpp/stl/
DTestStdCXXDisassembly.py31 depth = thread.GetNumFrames()
/external/llvm-project/lldb/test/API/functionalities/ubsan/basic/
DTestUbsanBasic.py58 for i in range(thread.GetNumFrames()):
/external/llvm-project/lldb/include/lldb/Target/
DStackFrameList.h31 uint32_t GetNumFrames(bool can_create = true);
/external/llvm-project/lldb/test/API/api/multithreaded/
Dtest_listener_event_process_state.cpp.template45 uint32_t num_frames = thread.GetNumFrames();
/external/llvm-project/lldb/test/API/macosx/universal/
DTestUniversal.py158 thread.GetNumFrames() > 1,
/external/llvm-project/lldb/include/lldb/API/
DSBThread.h170 uint32_t GetNumFrames();
/external/llvm-project/lldb/test/API/api/multiple-debuggers/
Dmulti-process-driver.cpp72 const uint32_t framecount = thread.GetNumFrames(); in walk_stack_to_main()
/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dobject_tracker.h112 inline int GetNumFrames() const { in GetNumFrames() function

12