Home
last modified time | relevance | path

Searched refs:GetLoadBias (Results 1 – 15 of 15) sorted by relevance

/system/core/libunwindstack/tests/
DMapInfoGetLoadBiasTest.cpp68 EXPECT_EQ(0U, info.GetLoadBias(process_memory_)); in TEST_F()
75 EXPECT_EQ(0U, map_info_->GetLoadBias(process_memory_)); in TEST_F()
78 EXPECT_EQ(0U, map_info_->GetLoadBias(process_memory_)); in TEST_F()
85 EXPECT_EQ(0U, map_info_->GetLoadBias(process_memory_)); in TEST_F()
89 EXPECT_EQ(0x1000U, map_info_->GetLoadBias(process_memory_)); in TEST_F()
106 load_bias_values[i] = map_info_->GetLoadBias(process_memory_); in MultipleThreadTest()
152 EXPECT_EQ(0xe000U, map_info_->GetLoadBias(process_memory_)); in TEST_F()
158 EXPECT_EQ(0xe000U, map_info_->GetLoadBias(process_memory_)); in TEST_F()
161 EXPECT_EQ(0xe000U, map_info_->GetLoadBias(process_memory_)); in TEST_F()
/system/core/libunwindstack/tools/
Dunwind_info.cpp47 uint64_t load_bias = elf->GetLoadBias(); in DumpArm()
143 DumpDwarfSection(&elf, interface->eh_frame(), elf.GetLoadBias()); in GetElfInfo()
151 DumpDwarfSection(&elf, interface->debug_frame(), elf.GetLoadBias()); in GetElfInfo()
Dunwind_reg_info.cpp182 uint64_t load_bias = elf.GetLoadBias(); in GetInfo()
/system/core/libbacktrace/
DUnwindStackMap.cpp85 map->load_bias = map_info->GetLoadBias(process_memory_); in FillIn()
88 uint64_t UnwindStackMap::GetLoadBias(size_t index) { in GetLoadBias() function in UnwindStackMap
97 return map_info->GetLoadBias(process_memory_); in GetLoadBias()
DUnwindStackMap.h65 uint64_t GetLoadBias(size_t index) override;
/system/core/libunwindstack/include/unwindstack/
DElf.h78 uint64_t GetLoadBias() { return load_bias_; } in GetLoadBias() function
104 static uint64_t GetLoadBias(Memory* memory);
DMapInfo.h84 uint64_t GetLoadBias(const std::shared_ptr<Memory>& process_memory);
DElfInterface.h101 static uint64_t GetLoadBias(Memory* memory);
/system/core/libunwindstack/
DMapInfo.cpp261 uint64_t MapInfo::GetLoadBias(const std::shared_ptr<Memory>& process_memory) { in GetLoadBias() function in unwindstack::MapInfo
272 cur_load_bias = elf->GetLoadBias(); in GetLoadBias()
285 cur_load_bias = Elf::GetLoadBias(memory.get()); in GetLoadBias()
DElf.cpp302 uint64_t Elf::GetLoadBias(Memory* memory) { in GetLoadBias() function in unwindstack::Elf
313 return ElfInterface::GetLoadBias<Elf32_Ehdr, Elf32_Phdr>(memory); in GetLoadBias()
315 return ElfInterface::GetLoadBias<Elf64_Ehdr, Elf64_Phdr>(memory); in GetLoadBias()
DRegsArm.cpp59 uint64_t load_bias = elf->GetLoadBias(); in GetPcAdjustment()
DElfInterface.cpp178 uint64_t ElfInterface::GetLoadBias(Memory* memory) { in GetLoadBias() function in unwindstack::ElfInterface
668 template uint64_t ElfInterface::GetLoadBias<Elf32_Ehdr, Elf32_Phdr>(Memory*);
669 template uint64_t ElfInterface::GetLoadBias<Elf64_Ehdr, Elf64_Phdr>(Memory*);
DUnwinder.cpp122 frame->map_load_bias = elf->GetLoadBias(); in FillInFrame()
/system/core/libbacktrace/include/backtrace/
DBacktraceMap.h106 map->load_bias = map_->GetLoadBias(index_);
171 virtual uint64_t GetLoadBias(size_t /* index */) { return 0; } in GetLoadBias() function
/system/core/debuggerd/libdebuggerd/
Dtombstone.cpp360 uint64_t load_bias = map_info->GetLoadBias(process_memory); in dump_all_maps()