Home
last modified time | relevance | path

Searched refs:gnu_debugdata_interface_ (Results 1 – 5 of 5) sorted by relevance

/system/unwinding/libunwindstack/
DElf.cpp77 gnu_debugdata_interface_.reset(CreateInterfaceFromMemory(memory)); in InitGnuDebugdata()
78 ElfInterface* gnu = gnu_debugdata_interface_.get(); in InitGnuDebugdata()
90 gnu_debugdata_interface_.reset(nullptr); in InitGnuDebugdata()
114 (gnu_debugdata_interface_ && in GetFunctionName()
115 gnu_debugdata_interface_->GetFunctionName(addr, name, func_offset))); in GetFunctionName()
125 (gnu_debugdata_interface_ == nullptr || in GetGlobalVariableOffset()
126 !gnu_debugdata_interface_->GetGlobalVariable(name, &vaddr))) { in GetGlobalVariableOffset()
256 if (gnu_debugdata_interface_ != nullptr && gnu_debugdata_interface_->IsValidPc(pc)) { in IsValidPc()
273 if (gnu_debugdata_interface_ != nullptr && gnu_debugdata_interface_->GetTextRange(addr, size)) { in GetTextRange()
DElfInterface.cpp537 if (gnu_debugdata_interface_ != nullptr && in Step()
538 gnu_debugdata_interface_->Step(pc, regs, process_memory, finished, is_signal_frame)) { in Step()
548 } else if (gnu_debugdata_interface_ != nullptr) { in Step()
549 last_error_ = gnu_debugdata_interface_->last_error(); in Step()
/system/unwinding/libunwindstack/include/unwindstack/
DElf.h90 ElfInterface* gnu_debugdata_interface() { return gnu_debugdata_interface_.get(); } in gnu_debugdata_interface()
126 std::unique_ptr<ElfInterface> gnu_debugdata_interface_; variable
DElfInterface.h110 void SetGnuDebugdataInterface(ElfInterface* interface) { gnu_debugdata_interface_ = interface; } in SetGnuDebugdataInterface()
179 ElfInterface* gnu_debugdata_interface_ = nullptr; variable
/system/unwinding/libunwindstack/tests/
DElfFake.h63 gnu_debugdata_interface_.reset(interface); in FakeSetGnuDebugdataInterface()