Searched refs:mapStart (Results 1 – 4 of 4) sorted by relevance
/base/hiviewdfx/faultloggerd/test/unittest/unwind/include/ |
D | elf_imitate.h | 70 uint64_t GetLoadBase(uint64_t mapStart, uint64_t mapOffset); 73 uint64_t GetRelPc(uint64_t pc, uint64_t mapStart, uint64_t mapOffset);
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/include/ |
D | dfx_elf.h | 55 uint64_t GetLoadBase(uint64_t mapStart, uint64_t mapOffset); 64 uint64_t GetRelPc(uint64_t pc, uint64_t mapStart, uint64_t mapOffset);
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/ |
D | dfx_elf.cpp | 318 uint64_t DfxElf::GetLoadBase(uint64_t mapStart, uint64_t mapOffset) in GetLoadBase() argument 322 … LOGU("mapStart: %" PRIx64 ", mapOffset: %" PRIx64 "", (uint64_t)mapStart, (uint64_t)mapOffset); in GetLoadBase() 323 loadBase_ = mapStart - mapOffset - static_cast<uint64_t>(GetLoadBias()); in GetLoadBase() 397 uint64_t DfxElf::GetRelPc(uint64_t pc, uint64_t mapStart, uint64_t mapOffset) in GetRelPc() argument 399 return (pc - GetLoadBase(mapStart, mapOffset)); in GetRelPc()
|
/base/hiviewdfx/faultloggerd/test/unittest/unwind/ |
D | elf_imitate.cpp | 807 uint64_t ElfImitate::GetLoadBase(uint64_t mapStart, uint64_t mapOffset) in GetLoadBase() argument 809 loadBase_ = mapStart - mapOffset - GetLoadBias(); in GetLoadBase() 828 uint64_t ElfImitate::GetRelPc(uint64_t pc, uint64_t mapStart, uint64_t mapOffset) in GetRelPc() argument 830 return (pc - GetLoadBase(mapStart, mapOffset)); in GetRelPc()
|