Home
last modified time | relevance | path

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

/system/core/libunwindstack/tests/
DUnwinderTest.cpp158 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame0", 0)); in TEST_F()
159 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame1", 1)); in TEST_F()
160 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame2", 2)); in TEST_F()
222 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame0", 0)); in TEST_F()
223 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame1", 1)); in TEST_F()
224 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame2", 2)); in TEST_F()
287 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame0", 0)); in TEST_F()
317 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame0", 0)); in TEST_F()
347 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame0", 0)); in TEST_F()
377 ElfInterfaceFake::FakePushFunctionData(FunctionData("Frame0", 0)); in TEST_F()
[all …]
DElfFake.h42 struct FunctionData { struct
43 FunctionData(std::string name, uint64_t offset) : name(name), offset(offset) {} in FunctionData() function
90 static void FakePushFunctionData(const FunctionData data) { functions_.push_back(data); } in FakePushFunctionData()
118 static std::deque<FunctionData> functions_;
DElfFake.cpp32 std::deque<FunctionData> ElfInterfaceFake::functions_;
DMapInfoTest.cpp63 interface->FakePushFunctionData(FunctionData("function", 1000)); in TEST()
/system/core/libunwindstack/tests/fuzz/
DUnwinderComponentCreator.h48 using unwindstack::FunctionData;
DUnwinderComponentCreator.cpp76 ElfInterfaceFake::FakePushFunctionData(FunctionData(func_name, i)); in ElfPushFakeFunctionData()