Home
last modified time | relevance | path

Searched refs:GetFunctionName (Results 1 – 12 of 12) sorted by relevance

/system/core/libunwindstack/
DElfInterface.h55 virtual bool GetFunctionName(uint64_t addr, std::string* name, uint64_t* offset) = 0;
126 bool GetFunctionName(uint64_t, std::string*, uint64_t*) override { in GetFunctionName() function
147 bool GetFunctionName(uint64_t, std::string*, uint64_t*) override { in GetFunctionName() function
DElf.h48 bool GetFunctionName(uint64_t, std::string*, uint64_t*) { in GetFunctionName() function
Dunwind_info.cpp49 if (interface->GetFunctionName(addr + load_bias + 1, &name, &func_offset) && !name.empty()) { in DumpArm()
/system/core/libbacktrace/
DUnwindPtrace.cpp139 frame->func_name = GetFunctionName(frame->pc, &frame->func_offset, &frame->map); in Unwind()
DBacktrace.cpp55 std::string Backtrace::GetFunctionName(uintptr_t pc, uintptr_t* offset, const backtrace_map_t* map)… in GetFunctionName() function in Backtrace
Dbacktrace_test.cpp1186 std::string func_name = backtrace->GetFunctionName(read_addr, &offset); in TEST()
1262 std::string func_name = backtrace->GetFunctionName(read_addr, &offset); in TEST()
1417 ASSERT_NE(std::string(""), backtrace->GetFunctionName(cur_func_offset, &offset)); in TEST()
1430 ASSERT_NE(std::string(""), backtrace->GetFunctionName(cur_func_offset, &offset)); in TEST()
1511 ASSERT_EQ(std::string(""), backtrace->GetFunctionName(device_map_uint, &offset)); in UnwindFromDevice()
1512 ASSERT_EQ(std::string(""), backtrace->GetFunctionName(device_map_uint, &offset, &map)); in UnwindFromDevice()
1513 ASSERT_EQ(std::string(""), backtrace->GetFunctionName(0, &offset)); in UnwindFromDevice()
1519 ASSERT_NE(std::string(""), backtrace->GetFunctionName(cur_func_offset, &offset, &map)); in UnwindFromDevice()
1521 ASSERT_EQ(std::string(""), backtrace->GetFunctionName(cur_func_offset, &offset, &map)); in UnwindFromDevice()
DUnwindCurrent.cpp130 frame->func_name = GetFunctionName(frame->pc, &frame->func_offset, &frame->map); in UnwindFromContext()
DBacktraceOffline.cpp219 frame->func_name = GetFunctionName(frame->pc, &frame->func_offset); in Unwind()
/system/core/libbacktrace/include/backtrace/
DBacktrace.h109 virtual std::string GetFunctionName(uintptr_t pc, uintptr_t* offset,
/system/core/libunwindstack/tests/
DElfTest.cpp159 ASSERT_FALSE(elf.GetFunctionName(0, &name, &func_offset)); in TEST_F()
DRegsTest.cpp46 bool GetFunctionName(uint64_t, std::string*, uint64_t*) override { return false; } in GetFunctionName() function in ElfInterfaceFake
/system/core/debuggerd/libdebuggerd/
Dtombstone.cpp286 std::string func_name(backtrace->GetFunctionName(stack_data[i], &offset, &map)); in dump_stack_segment()