Searched refs:GetFunctionName (Results 1 – 12 of 12) sorted by relevance
/system/core/libunwindstack/ |
D | ElfInterface.h | 55 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
|
D | Elf.h | 48 bool GetFunctionName(uint64_t, std::string*, uint64_t*) { in GetFunctionName() function
|
D | unwind_info.cpp | 49 if (interface->GetFunctionName(addr + load_bias + 1, &name, &func_offset) && !name.empty()) { in DumpArm()
|
/system/core/libbacktrace/ |
D | UnwindPtrace.cpp | 139 frame->func_name = GetFunctionName(frame->pc, &frame->func_offset, &frame->map); in Unwind()
|
D | Backtrace.cpp | 55 std::string Backtrace::GetFunctionName(uintptr_t pc, uintptr_t* offset, const backtrace_map_t* map)… in GetFunctionName() function in Backtrace
|
D | backtrace_test.cpp | 1186 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()
|
D | UnwindCurrent.cpp | 130 frame->func_name = GetFunctionName(frame->pc, &frame->func_offset, &frame->map); in UnwindFromContext()
|
D | BacktraceOffline.cpp | 219 frame->func_name = GetFunctionName(frame->pc, &frame->func_offset); in Unwind()
|
/system/core/libbacktrace/include/backtrace/ |
D | Backtrace.h | 109 virtual std::string GetFunctionName(uintptr_t pc, uintptr_t* offset,
|
/system/core/libunwindstack/tests/ |
D | ElfTest.cpp | 159 ASSERT_FALSE(elf.GetFunctionName(0, &name, &func_offset)); in TEST_F()
|
D | RegsTest.cpp | 46 bool GetFunctionName(uint64_t, std::string*, uint64_t*) override { return false; } in GetFunctionName() function in ElfInterfaceFake
|
/system/core/debuggerd/libdebuggerd/ |
D | tombstone.cpp | 286 std::string func_name(backtrace->GetFunctionName(stack_data[i], &offset, &map)); in dump_stack_segment()
|