Home
last modified time | relevance | path

Searched refs:m_binary (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.cpp394 if (m_binary) in CreateBinary()
408 m_binary = in CreateBinary()
410 if (!m_binary) in CreateBinary()
415 m_file.GetPath(), m_binary.get()); in CreateBinary()
784 const uint32_t num_syms = m_binary->getNumberOfSymbols(); in AppendFromCOFFSymbolTable()
788 if (m_binary->getSymbolTableEntrySize() != in AppendFromCOFFSymbolTable()
794 for (const auto &sym_ref : m_binary->symbols()) { in AppendFromCOFFSymbolTable()
795 const auto coff_sym_ref = m_binary->getCOFFSymbol(sym_ref); in AppendFromCOFFSymbolTable()
852 const auto *export_table = m_binary->getExportTable(); in AppendFromExportTable()
863 for (const auto &entry : m_binary->export_directories()) { in AppendFromExportTable()
[all …]
H A DObjectFilePECOFF.h286 std::unique_ptr<llvm::object::COFFObjectFile> m_binary; variable