• Home
  • Raw
  • Download

Lines Matching refs:COFFObjectFile

58 const coff_symbol *COFFObjectFile::toSymb(DataRefImpl Symb) const {  in toSymb()
76 const coff_section *COFFObjectFile::toSec(DataRefImpl Sec) const { in toSec()
93 error_code COFFObjectFile::getSymbolNext(DataRefImpl Symb, in getSymbolNext()
102 error_code COFFObjectFile::getSymbolName(DataRefImpl Symb, in getSymbolName()
108 error_code COFFObjectFile::getSymbolFileOffset(DataRefImpl Symb, in getSymbolFileOffset()
126 error_code COFFObjectFile::getSymbolAddress(DataRefImpl Symb, in getSymbolAddress()
144 error_code COFFObjectFile::getSymbolType(DataRefImpl Symb, in getSymbolType()
166 error_code COFFObjectFile::getSymbolFlags(DataRefImpl Symb, in getSymbolFlags()
190 error_code COFFObjectFile::getSymbolSize(DataRefImpl Symb, in getSymbolSize()
211 error_code COFFObjectFile::getSymbolNMTypeChar(DataRefImpl Symb, in getSymbolNMTypeChar()
279 error_code COFFObjectFile::getSymbolSection(DataRefImpl Symb, in getSymbolSection()
294 error_code COFFObjectFile::getSymbolValue(DataRefImpl Symb, in getSymbolValue()
299 error_code COFFObjectFile::getSectionNext(DataRefImpl Sec, in getSectionNext()
308 error_code COFFObjectFile::getSectionName(DataRefImpl Sec, in getSectionName()
314 error_code COFFObjectFile::getSectionAddress(DataRefImpl Sec, in getSectionAddress()
321 error_code COFFObjectFile::getSectionSize(DataRefImpl Sec, in getSectionSize()
328 error_code COFFObjectFile::getSectionContents(DataRefImpl Sec, in getSectionContents()
337 error_code COFFObjectFile::getSectionAlignment(DataRefImpl Sec, in getSectionAlignment()
346 error_code COFFObjectFile::isSectionText(DataRefImpl Sec, in isSectionText()
353 error_code COFFObjectFile::isSectionData(DataRefImpl Sec, in isSectionData()
360 error_code COFFObjectFile::isSectionBSS(DataRefImpl Sec, in isSectionBSS()
367 error_code COFFObjectFile::isSectionRequiredForExecution(DataRefImpl Sec, in isSectionRequiredForExecution()
374 error_code COFFObjectFile::isSectionVirtual(DataRefImpl Sec, in isSectionVirtual()
381 error_code COFFObjectFile::isSectionZeroInit(DataRefImpl Sec, in isSectionZeroInit()
388 error_code COFFObjectFile::isSectionReadOnlyData(DataRefImpl Sec, in isSectionReadOnlyData()
395 error_code COFFObjectFile::sectionContainsSymbol(DataRefImpl Sec, in sectionContainsSymbol()
409 relocation_iterator COFFObjectFile::getSectionRelBegin(DataRefImpl Sec) const { in getSectionRelBegin()
420 relocation_iterator COFFObjectFile::getSectionRelEnd(DataRefImpl Sec) const { in getSectionRelEnd()
434 COFFObjectFile::COFFObjectFile(MemoryBuffer *Object, error_code &ec) in COFFObjectFile() function in COFFObjectFile
522 symbol_iterator COFFObjectFile::begin_symbols() const { in begin_symbols()
528 symbol_iterator COFFObjectFile::end_symbols() const { in end_symbols()
535 symbol_iterator COFFObjectFile::begin_dynamic_symbols() const { in begin_dynamic_symbols()
540 symbol_iterator COFFObjectFile::end_dynamic_symbols() const { in end_dynamic_symbols()
545 library_iterator COFFObjectFile::begin_libraries_needed() const { in begin_libraries_needed()
550 library_iterator COFFObjectFile::end_libraries_needed() const { in end_libraries_needed()
555 StringRef COFFObjectFile::getLoadName() const { in getLoadName()
561 section_iterator COFFObjectFile::begin_sections() const { in begin_sections()
567 section_iterator COFFObjectFile::end_sections() const { in end_sections()
573 uint8_t COFFObjectFile::getBytesInAddress() const { in getBytesInAddress()
577 StringRef COFFObjectFile::getFileFormatName() const { in getFileFormatName()
588 unsigned COFFObjectFile::getArch() const { in getArch()
601 error_code COFFObjectFile::getHeader(const coff_file_header *&Res) const { in getHeader()
605 error_code COFFObjectFile::getCOFFHeader(const coff_file_header *&Res) const { in getCOFFHeader()
610 error_code COFFObjectFile::getPE32Header(const pe32_header *&Res) const { in getPE32Header()
615 error_code COFFObjectFile::getDataDirectory(uint32_t index, in getDataDirectory()
624 error_code COFFObjectFile::getSection(int32_t index, in getSection()
639 error_code COFFObjectFile::getString(uint32_t offset, in getString()
650 error_code COFFObjectFile::getSymbol(uint32_t index, in getSymbol()
659 error_code COFFObjectFile::getSymbolName(const coff_symbol *symbol, in getSymbolName()
678 ArrayRef<uint8_t> COFFObjectFile::getSymbolAuxData( in getSymbolAuxData()
700 error_code COFFObjectFile::getSectionName(const coff_section *Sec, in getSectionName()
723 error_code COFFObjectFile::getSectionContents(const coff_section *Sec, in getSectionContents()
737 const coff_relocation *COFFObjectFile::toRel(DataRefImpl Rel) const { in toRel()
740 error_code COFFObjectFile::getRelocationNext(DataRefImpl Rel, in getRelocationNext()
747 error_code COFFObjectFile::getRelocationAddress(DataRefImpl Rel, in getRelocationAddress()
751 error_code COFFObjectFile::getRelocationOffset(DataRefImpl Rel, in getRelocationOffset()
756 symbol_iterator COFFObjectFile::getRelocationSymbol(DataRefImpl Rel) const { in getRelocationSymbol()
762 error_code COFFObjectFile::getRelocationType(DataRefImpl Rel, in getRelocationType()
769 const coff_section *COFFObjectFile::getCOFFSection(section_iterator &It) const { in getCOFFSection()
773 const coff_symbol *COFFObjectFile::getCOFFSymbol(symbol_iterator &It) const { in getCOFFSymbol()
777 const coff_relocation *COFFObjectFile::getCOFFRelocation( in getCOFFRelocation()
786 error_code COFFObjectFile::getRelocationTypeName(DataRefImpl Rel, in getRelocationTypeName()
840 error_code COFFObjectFile::getRelocationValueString(DataRefImpl Rel, in getRelocationValueString()
853 error_code COFFObjectFile::getLibraryNext(DataRefImpl LibData, in getLibraryNext()
858 error_code COFFObjectFile::getLibraryPath(DataRefImpl LibData, in getLibraryPath()
867 return new COFFObjectFile(Object, ec); in createCOFFObjectFile()