Home
last modified time | relevance | path

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

/system/unwinding/libunwindstack/
DDexFile.h44 bool IsValidPc(uint64_t dex_pc) { in IsValidPc() argument
45 return base_addr_ <= dex_pc && (dex_pc - base_addr_) < file_size_; in IsValidPc()
48 bool GetFunctionName(uint64_t dex_pc, SharedString* method_name, uint64_t* method_offset);
DUnwinder.cpp59 uint64_t dex_pc = regs_->dex_pc(); in FillInDexFrame() local
60 frame->pc = dex_pc; in FillInDexFrame()
63 frame->map_info = maps_->Find(dex_pc); in FillInDexFrame()
65 frame->rel_pc = dex_pc - frame->map_info->start(); in FillInDexFrame()
70 frame->rel_pc = dex_pc; in FillInDexFrame()
84 dex_files_->GetFunctionName(maps_, dex_pc, &frame->function_name, &frame->function_offset); in FillInDexFrame()
194 if (regs_->dex_pc() != 0) { in Unwind()
DDexFile.cpp127 bool DexFile::GetFunctionName(uint64_t dex_pc, SharedString* method_name, uint64_t* method_offset) { in GetFunctionName() argument
128 uint64_t dex_offset = dex_pc - base_addr_; // Convert absolute PC to file-relative offset. in GetFunctionName()
/system/unwinding/libunwindstack/include/unwindstack/
DRegs.h65 uint64_t dex_pc() { return dex_pc_; } in dex_pc() function
66 void set_dex_pc(uint64_t dex_pc) { dex_pc_ = dex_pc; } in set_dex_pc() argument
/system/unwinding/libunwindstack/utils/
DRegsFake.h59 void FakeSetDexPc(uint64_t dex_pc) { dex_pc_ = dex_pc; } in FakeSetDexPc() argument
/system/unwinding/libunwindstack/tests/
DDwarfSectionImplTest.cpp310 EXPECT_EQ(0x11U, regs.dex_pc()); in TYPED_TEST_P()