Home
last modified time | relevance | path

Searched refs:elf_start_offset (Results 1 – 7 of 7) sorted by relevance

/aosp12/system/unwinding/libunwindstack/tests/
H A DMapInfoCreateMemoryTest.cpp117 EXPECT_EQ(0x100U, info.elf_start_offset()); in TEST_F()
145 EXPECT_EQ(0x100U, info.elf_start_offset()); in TEST_F()
155 EXPECT_EQ(0x100U, info.elf_start_offset()); in TEST_F()
165 EXPECT_EQ(0x100U, info.elf_start_offset()); in TEST_F()
175 EXPECT_EQ(0U, info.elf_start_offset()); in TEST_F()
187 EXPECT_EQ(0x1000U, info.elf_start_offset()); in TEST_F()
212 EXPECT_EQ(0x1000U, info.elf_start_offset()); in TEST_F()
230 EXPECT_EQ(0x2000U, info.elf_start_offset()); in TEST_F()
305 EXPECT_EQ(0U, map_info->elf_start_offset()); in TEST_F()
423 EXPECT_EQ(0U, map_info->elf_start_offset()); in TEST_F()
[all …]
/aosp12/bionic/libc/malloc_debug/
H A Dbacktrace.cpp157 if (entry != nullptr && entry->elf_start_offset != 0) { in backtrace_string()
158 snprintf(offset_buf, sizeof(offset_buf), " (offset 0x%" PRIxPTR ")", entry->elf_start_offset); in backtrace_string()
H A DMapData.h49 uintptr_t elf_start_offset = 0; member
H A DMapData.cpp207 entry->elf_start_offset = prev_entry->offset; in find()
/aosp12/system/unwinding/libunwindstack/
H A DUnwinder.cpp114 if (embedded_soname_ && map_info->elf_start_offset() != 0 && !frame->map_name.empty()) { in FillInFrame()
125 frame->map_elf_start_offset = map_info->elf_start_offset(); in FillInFrame()
479 frame.map_elf_start_offset = map_info->elf_start_offset(); in BuildFrameFromPcOnly()
H A DMapInfo.cpp259 } else if (prev_real_map() != nullptr && elf_start_offset() != offset() && in GetElf()
260 prev_real_map()->offset() == elf_start_offset() && prev_real_map()->name() == name()) { in GetElf()
/aosp12/system/unwinding/libunwindstack/include/unwindstack/
H A DMapInfo.h109 inline uint64_t elf_start_offset() { return GetElfFields().elf_start_offset_; } in elf_start_offset() function