Home
last modified time | relevance | path

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

/system/core/libunwindstack/
DElf.cpp72 gnu_debugdata_interface_.reset(CreateInterfaceFromMemory(gnu_debugdata_memory_.get())); in InitGnuDebugdata()
73 ElfInterface* gnu = gnu_debugdata_interface_.get(); in InitGnuDebugdata()
87 gnu_debugdata_interface_.reset(nullptr); in InitGnuDebugdata()
111 (gnu_debugdata_interface_ && in GetFunctionName()
112 gnu_debugdata_interface_->GetFunctionName(addr, name, func_offset))); in GetFunctionName()
122 (gnu_debugdata_interface_ == nullptr || in GetGlobalVariableOffset()
123 !gnu_debugdata_interface_->GetGlobalVariable(name, &vaddr))) { in GetGlobalVariableOffset()
249 if (gnu_debugdata_interface_ != nullptr && gnu_debugdata_interface_->IsValidPc(pc)) { in IsValidPc()
DElfInterface.cpp519 if (gnu_debugdata_interface_ != nullptr && in Step()
520 gnu_debugdata_interface_->Step(pc, regs, process_memory, finished)) { in Step()
530 } else if (gnu_debugdata_interface_ != nullptr) { in Step()
531 last_error_ = gnu_debugdata_interface_->last_error(); in Step()
/system/core/libunwindstack/include/unwindstack/
DElf.h98 ElfInterface* gnu_debugdata_interface() { return gnu_debugdata_interface_.get(); } in gnu_debugdata_interface()
129 std::unique_ptr<ElfInterface> gnu_debugdata_interface_; variable
DElfInterface.h77 void SetGnuDebugdataInterface(ElfInterface* interface) { gnu_debugdata_interface_ = interface; } in SetGnuDebugdataInterface()
180 ElfInterface* gnu_debugdata_interface_ = nullptr; variable
/system/core/libunwindstack/tests/
DElfFake.h62 gnu_debugdata_interface_.reset(interface); in FakeSetGnuDebugdataInterface()