|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
tools/lldb/include/lldb/Symbol/UnwindPlan.h 449 const UnwindPlan::RowSP GetRowAtIndex(uint32_t idx) const;
References
tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp 1355 UnwindPlan::RowSP first_row = unwind_plan.GetRowAtIndex(0);
1410 unwind_plan.GetRowAtIndex(row_id)->GetOffset() <= offset) {
1413 UnwindPlan::RowSP original_row = unwind_plan.GetRowAtIndex(row_id - 1);
tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp 674 unwind_plan.GetRowAtIndex(0)->GetRegisterInfo(reg_num,
744 unwind_plan.GetRowAtIndex(0)->GetRegisterInfo(reg_num,
tools/lldb/source/Symbol/FuncUnwinders.cpp 358 UnwindPlan::RowSP a_first_row = a->GetRowAtIndex(0);
359 UnwindPlan::RowSP b_first_row = b->GetRowAtIndex(0);
tools/lldb/source/Symbol/UnwindPlan.cpp 456 if (GetRowAtIndex(0).get() == nullptr ||
457 GetRowAtIndex(0)->GetCFAValue().GetValueType() ==
tools/lldb/unittests/ObjectFile/PECOFF/TestPECallFrameInfo.cpp 226 EXPECT_EQ(*plan.GetRowAtIndex(0), row);
231 EXPECT_EQ(*plan.GetRowAtIndex(1), row);
236 EXPECT_EQ(*plan.GetRowAtIndex(2), row);
241 EXPECT_EQ(*plan.GetRowAtIndex(3), row);
246 EXPECT_EQ(*plan.GetRowAtIndex(4), row);
251 EXPECT_EQ(*plan.GetRowAtIndex(5), row);
255 EXPECT_EQ(*plan.GetRowAtIndex(6), row);
273 EXPECT_EQ(*plan.GetRowAtIndex(0), row);
277 EXPECT_EQ(*plan.GetRowAtIndex(1), row);
290 EXPECT_EQ(*plan.GetRowAtIndex(0), row);
295 EXPECT_EQ(*plan.GetRowAtIndex(1), row);
300 EXPECT_EQ(*plan.GetRowAtIndex(2), row);
305 EXPECT_EQ(*plan.GetRowAtIndex(3), row);
310 EXPECT_EQ(*plan.GetRowAtIndex(4), row);
315 EXPECT_EQ(*plan.GetRowAtIndex(5), row);
319 EXPECT_EQ(*plan.GetRowAtIndex(6), row);
323 EXPECT_EQ(*plan.GetRowAtIndex(7), row);
327 EXPECT_EQ(*plan.GetRowAtIndex(8), row);
331 EXPECT_EQ(*plan.GetRowAtIndex(9), row);
335 EXPECT_EQ(*plan.GetRowAtIndex(10), row);
tools/lldb/unittests/Symbol/TestDWARFCallFrameInfo.cpp 254 EXPECT_EQ(GetExpectedRow0(), *plan.GetRowAtIndex(0));
255 EXPECT_EQ(GetExpectedRow1(), *plan.GetRowAtIndex(1));
256 EXPECT_EQ(GetExpectedRow2(), *plan.GetRowAtIndex(2));