Home
last modified time | relevance | path

Searched refs:dex_pc (Results 1 – 6 of 6) sorted by relevance

/system/core/libunwindstack/
DUnwinder.cpp58 uint64_t dex_pc = regs_->dex_pc(); in FillInDexFrame() local
59 frame->pc = dex_pc; in FillInDexFrame()
62 MapInfo* info = maps_->Find(dex_pc); in FillInDexFrame()
73 frame->rel_pc = dex_pc - info->start; in FillInDexFrame()
75 frame->rel_pc = dex_pc; in FillInDexFrame()
88 dex_files_->GetMethodInformation(maps_, info, dex_pc, &frame->function_name, in FillInDexFrame()
205 if (regs_->dex_pc() != 0) { in Unwind()
DDexFiles.cpp157 void DexFiles::GetMethodInformation(Maps* maps, MapInfo* info, uint64_t dex_pc, in GetMethodInformation() argument
173 dex_file->GetMethodInformation(dex_pc - addr, method_name, method_offset)) { in GetMethodInformation()
/system/core/libunwindstack/include/unwindstack/
DRegs.h64 uint64_t dex_pc() { return dex_pc_; } in dex_pc() function
65 void set_dex_pc(uint64_t dex_pc) { dex_pc_ = dex_pc; } in set_dex_pc() argument
DDexFiles.h47 void GetMethodInformation(Maps* maps, MapInfo* info, uint64_t dex_pc, std::string* method_name,
/system/core/libunwindstack/tests/
DRegsFake.h62 void FakeSetDexPc(uint64_t dex_pc) { dex_pc_ = dex_pc; } in FakeSetDexPc() argument
DDwarfSectionImplTest.cpp333 EXPECT_EQ(0x11U, regs.dex_pc()); in TYPED_TEST_P()