Home
last modified time | relevance | path

Searched refs:load_bias (Results 1 – 4 of 4) sorted by relevance

/system/core/libunwindstack/
Dunwind_info.cpp42 uint64_t load_bias = entry.second.table_offset; in DumpArm() local
43 printf(" PC Range 0x%" PRIx64 " - 0x%" PRIx64 "\n", entry.second.offset + load_bias, in DumpArm()
44 entry.second.table_size + load_bias); in DumpArm()
47 printf(" PC 0x%" PRIx64, addr + load_bias); in DumpArm()
49 if (interface->GetFunctionName(addr + load_bias + 1, &name, &func_offset) && !name.empty()) { in DumpArm()
54 if (!interface->FindEntry(addr + load_bias, &entry)) { in DumpArm()
DRegs.cpp34 uint64_t load_bias = 0; in GetRelPc() local
36 load_bias = elf->interface()->load_bias(); in GetRelPc()
39 return pc_ - map_info->start + load_bias + map_info->elf_offset; in GetRelPc()
71 uint64_t load_bias = elf->interface()->load_bias(); in GetAdjustedPc() local
72 if (rel_pc < load_bias) { in GetAdjustedPc()
75 uint64_t adjusted_rel_pc = rel_pc - load_bias; in GetAdjustedPc()
DElfInterface.h64 uint64_t load_bias() { return load_bias_; } in load_bias() function
65 void set_load_bias(uint64_t load_bias) { load_bias_ = load_bias; } in set_load_bias() argument
/system/core/libunwindstack/tests/
DRegsTest.cpp41 void set_load_bias(uint64_t load_bias) { load_bias_ = load_bias; } in set_load_bias() argument