Home
last modified time | relevance | path

Searched refs:FunctionData (Results 1 – 6 of 6) sorted by relevance

/system/unwinding/libunwindstack/tests/
DUnwinderTest.cpp197 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame0", 0)); in TEST_F()
198 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame1", 1)); in TEST_F()
199 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame2", 2)); in TEST_F()
262 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame0", 0)); in TEST_F()
263 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame1", 1)); in TEST_F()
264 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame2", 2)); in TEST_F()
328 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame0", 0)); in TEST_F()
359 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame0", 0)); in TEST_F()
390 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame0", 0)); in TEST_F()
421 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame0", 0)); in TEST_F()
[all …]
DElfFake.h43 struct FunctionData { struct
44 FunctionData(std::string name, uint64_t offset) : name(name), offset(offset) {} in FunctionData() function
91 static void FakePushFunctionData(const FunctionData data) { functions_.push_back(data); } in FakePushFunctionData()
119 static std::deque<FunctionData> functions_;
DElfFake.cpp33 std::deque<FunctionData> ElfInterfaceFake::functions_;
DMapInfoTest.cpp65 interface->FakePushFunctionData(FunctionData("function", 1000)); in TEST()
/system/unwinding/libunwindstack/tests/fuzz/
DUnwinderComponentCreator.h48 using unwindstack::FunctionData;
DUnwinderComponentCreator.cpp81 ElfInterfaceFake::FakePushFunctionData(FunctionData(func_name, i)); in ElfPushFakeFunctionData()