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(gnu_debugdata_memory_.get())); in InitGnuDebugdata()
78 ElfInterface* gnu = gnu_debugdata_interface_.get(); in InitGnuDebugdata()
92 gnu_debugdata_interface_.reset(nullptr); in InitGnuDebugdata()
116 (gnu_debugdata_interface_ && in GetFunctionName()
117 gnu_debugdata_interface_->GetFunctionName(addr, name, func_offset))); in GetFunctionName()
127 (gnu_debugdata_interface_ == nullptr || in GetGlobalVariableOffset()
128 !gnu_debugdata_interface_->GetGlobalVariable(name, &vaddr))) { in GetGlobalVariableOffset()
258 if (gnu_debugdata_interface_ != nullptr && gnu_debugdata_interface_->IsValidPc(pc)) { in IsValidPc()
275 if (gnu_debugdata_interface_ != nullptr && gnu_debugdata_interface_->GetTextRange(addr, size)) { in GetTextRange()
DElfInterface.cpp468 if (gnu_debugdata_interface_ != nullptr && in Step()
469 gnu_debugdata_interface_->Step(pc, regs, process_memory, finished, is_signal_frame)) { in Step()
479 } else if (gnu_debugdata_interface_ != nullptr) { in Step()
480 last_error_ = gnu_debugdata_interface_->last_error(); in Step()
/system/unwinding/libunwindstack/include/unwindstack/
DElf.h98 ElfInterface* gnu_debugdata_interface() { return gnu_debugdata_interface_.get(); } in gnu_debugdata_interface()
135 std::unique_ptr<ElfInterface> gnu_debugdata_interface_; variable
DElfInterface.h100 void SetGnuDebugdataInterface(ElfInterface* interface) { gnu_debugdata_interface_ = interface; } in SetGnuDebugdataInterface()
179 ElfInterface* gnu_debugdata_interface_ = nullptr; variable
/system/unwinding/libunwindstack/tests/
DElfFake.h62 gnu_debugdata_interface_.reset(interface); in FakeSetGnuDebugdataInterface()