Searched refs:dex_pc (Results 1 – 6 of 6) sorted by relevance
/system/core/libunwindstack/ |
D | Unwinder.cpp | 58 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()
|
D | DexFiles.cpp | 157 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/ |
D | Regs.h | 64 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
|
D | DexFiles.h | 47 void GetMethodInformation(Maps* maps, MapInfo* info, uint64_t dex_pc, std::string* method_name,
|
/system/core/libunwindstack/tests/ |
D | RegsFake.h | 62 void FakeSetDexPc(uint64_t dex_pc) { dex_pc_ = dex_pc; } in FakeSetDexPc() argument
|
D | DwarfSectionImplTest.cpp | 333 EXPECT_EQ(0x11U, regs.dex_pc()); in TYPED_TEST_P()
|