Home
last modified time | relevance | path

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

/system/unwinding/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()
153 EXPECT_EQ(0xe000U, map_info_->GetLoadBias(process_memory_)); in TEST_F()
159 EXPECT_EQ(0xe000U, map_info_->GetLoadBias(process_memory_)); in TEST_F()
162 EXPECT_EQ(0xe000U, map_info_->GetLoadBias(process_memory_)); in TEST_F()
DElfInterfaceTest.cpp1862 int64_t static_load_bias = ElfInterface::GetLoadBias<Ehdr, Phdr>(&memory_); in CheckLoadBiasInFirstPhdr()
1922 int64_t static_load_bias = ElfInterface::GetLoadBias<Ehdr, Phdr>(&memory_); in CheckLoadBiasInFirstExecPhdr()
/system/unwinding/libbacktrace/
DUnwindStackMap.cpp99 map->load_bias = map_info->GetLoadBias(process_memory_); in FillIn()
102 uint64_t UnwindStackMap::GetLoadBias(size_t index) { in GetLoadBias() function in UnwindStackMap
111 return map_info->GetLoadBias(process_memory_); in GetLoadBias()
DUnwindStackMap.h66 uint64_t GetLoadBias(size_t index) override;
/system/unwinding/libunwindstack/tools/
Dunwind_info.cpp48 uint64_t load_bias = elf->GetLoadBias(); in DumpArm()
137 DumpDwarfSection(&elf, interface->eh_frame(), elf.GetLoadBias()); in GetElfInfo()
145 DumpDwarfSection(&elf, interface->debug_frame(), elf.GetLoadBias()); in GetElfInfo()
Dunwind_reg_info.cpp182 uint64_t load_bias = elf.GetLoadBias(); in GetInfo()
/system/unwinding/libunwindstack/include/unwindstack/
DElf.h71 int64_t GetLoadBias() { return load_bias_; } in GetLoadBias() function
99 static int64_t GetLoadBias(Memory* memory);
DMapInfo.h133 uint64_t GetLoadBias(const std::shared_ptr<Memory>& process_memory);
DElfInterface.h131 static int64_t GetLoadBias(Memory* memory);
/system/unwinding/libbacktrace/include/backtrace/
DBacktraceMap.h104 map->load_bias = map_->GetLoadBias(index_);
169 virtual uint64_t GetLoadBias(size_t /* index */) { return 0; } in GetLoadBias() function
/system/unwinding/libunwindstack/
DMapInfo.cpp287 uint64_t MapInfo::GetLoadBias(const std::shared_ptr<Memory>& process_memory) { in GetLoadBias() function in unwindstack::MapInfo
298 cur_load_bias = elf()->GetLoadBias(); in GetLoadBias()
311 cur_load_bias = Elf::GetLoadBias(memory.get()); in GetLoadBias()
DElf.cpp333 int64_t Elf::GetLoadBias(Memory* memory) { in GetLoadBias() function in unwindstack::Elf
344 return ElfInterface::GetLoadBias<Elf32_Ehdr, Elf32_Phdr>(memory); in GetLoadBias()
346 return ElfInterface::GetLoadBias<Elf64_Ehdr, Elf64_Phdr>(memory); in GetLoadBias()
DRegs.cpp131 uint64_t load_bias = elf->GetLoadBias(); in GetPcAdjustment()
DElfInterface.cpp153 int64_t ElfInterface::GetLoadBias(Memory* memory) { in GetLoadBias() function in unwindstack::ElfInterface
637 template int64_t ElfInterface::GetLoadBias<Elf32_Ehdr, Elf32_Phdr>(Memory*);
638 template int64_t ElfInterface::GetLoadBias<Elf64_Ehdr, Elf64_Phdr>(Memory*);
DUnwinder.cpp130 frame->map_load_bias = elf->GetLoadBias(); in FillInFrame()
484 frame.map_load_bias = elf->GetLoadBias(); in BuildFrameFromPcOnly()
/system/core/debuggerd/libdebuggerd/
Dtombstone.cpp300 uint64_t load_bias = map_info->GetLoadBias(process_memory); in dump_all_maps()
Dtombstone_proto.cpp464 map->set_load_bias(map_info->GetLoadBias(process_memory)); in dump_mappings()