Home
last modified time | relevance | path

Searched refs:StepData (Results 1 – 5 of 5) sorted by relevance

/aosp12/system/unwinding/libunwindstack/tests/
H A DUnwinderTest.cpp205 ElfInterfaceFake::FakePushStepData(StepData(0, 0, true)); in TEST_F()
270 ElfInterfaceFake::FakePushStepData(StepData(0, 0, true)); in TEST_F()
332 ElfInterfaceFake::FakePushStepData(StepData(0, 0, true)); in TEST_F()
363 ElfInterfaceFake::FakePushStepData(StepData(0, 0, true)); in TEST_F()
394 ElfInterfaceFake::FakePushStepData(StepData(0, 0, true)); in TEST_F()
425 ElfInterfaceFake::FakePushStepData(StepData(0, 0, true)); in TEST_F()
541 ElfInterfaceFake::FakePushStepData(StepData(0, 0, true)); in TEST_F()
605 ElfInterfaceFake::FakePushStepData(StepData(0, 0, true)); in TEST_F()
654 ElfInterfaceFake::FakePushStepData(StepData(0, 0, true)); in TEST_F()
675 ElfInterfaceFake::FakePushStepData(StepData(0, 0, true)); in TEST_F()
[all …]
H A DElfFake.h36 struct StepData { struct
37 StepData(uint64_t pc, uint64_t sp, bool finished) : pc(pc), sp(sp), finished(finished) {} in StepData() function
92 static void FakePushStepData(const StepData data) { steps_.push_back(data); } in FakePushStepData()
120 static std::deque<StepData> steps_;
H A DElfFake.cpp34 std::deque<StepData> ElfInterfaceFake::steps_;
/aosp12/system/unwinding/libunwindstack/tests/fuzz/
H A DUnwinderComponentCreator.h53 using unwindstack::StepData;
H A DUnwinderComponentCreator.cpp91 ElfInterfaceFake::FakePushStepData(StepData(pc, sp, finished)); in ElfPushFakeStepData()