Home | History | Annotate | Download | only in Object

Lines Matching refs:error_code

31 bool checkSize(const MemoryBuffer *m, error_code &ec, uint64_t size) {
41 error_code &ec,
89 error_code COFFObjectFile::getSymbolNext(DataRefImpl Symb,
98 error_code COFFObjectFile::getSymbolName(DataRefImpl Symb,
104 if (error_code ec = getString(Offset, Result))
118 error_code COFFObjectFile::getSymbolOffset(DataRefImpl Symb,
122 if (error_code ec = getSection(symb->SectionNumber, Section))
125 if (error_code ec = getSymbolNMTypeChar(Symb, Type))
136 error_code COFFObjectFile::getSymbolAddress(DataRefImpl Symb,
140 if (error_code ec = getSection(symb->SectionNumber, Section))
143 if (error_code ec = getSymbolNMTypeChar(Symb, Type))
156 error_code COFFObjectFile::getSymbolType(DataRefImpl Symb,
168 if (error_code ec = getSymbolNMTypeChar(Symb, Type))
178 error_code COFFObjectFile::isSymbolGlobal(DataRefImpl Symb,
185 error_code COFFObjectFile::getSymbolSize(DataRefImpl Symb,
192 if (error_code ec = getSection(symb->SectionNumber, Section))
195 if (error_code ec = getSymbolNMTypeChar(Symb, Type))
206 error_code COFFObjectFile::getSymbolNMTypeChar(DataRefImpl Symb,
210 if (error_code ec = getSymbolName(Symb, name))
225 if (error_code ec = getSection(symb->SectionNumber, Section))
272 error_code COFFObjectFile::isSymbolInternal(DataRefImpl Symb,
278 error_code COFFObjectFile::getSectionNext(DataRefImpl Sec,
287 error_code COFFObjectFile::getSectionName(DataRefImpl Sec,
302 if (error_code ec = getString(Offset, name))
310 error_code COFFObjectFile::getSectionAddress(DataRefImpl Sec,
317 error_code COFFObjectFile::getSectionSize(DataRefImpl Sec,
324 error_code COFFObjectFile::getSectionContents(DataRefImpl Sec,
339 error_code COFFObjectFile::getSectionAlignment(DataRefImpl Sec,
348 error_code COFFObjectFile::isSectionText(DataRefImpl Sec,
355 error_code COFFObjectFile::isSectionData(DataRefImpl Sec,
362 error_code COFFObjectFile::isSectionBSS(DataRefImpl Sec,
369 error_code COFFObjectFile::sectionContainsSymbol(DataRefImpl Sec,
375 if (error_code ec = getSection(symb->SectionNumber, symb_sec)) return ec;
410 COFFObjectFile::COFFObjectFile(MemoryBuffer *Object, error_code &ec)
528 error_code COFFObjectFile::getSection(int32_t index,
543 error_code COFFObjectFile::getString(uint32_t offset,
554 error_code COFFObjectFile::getSymbol(uint32_t index,
566 error_code COFFObjectFile::getRelocationNext(DataRefImpl Rel,
573 error_code COFFObjectFile::getRelocationAddress(DataRefImpl Rel,
578 error_code COFFObjectFile::getRelocationSymbol(DataRefImpl Rel,
586 error_code COFFObjectFile::getRelocationType(DataRefImpl Rel,
596 error_code COFFObjectFile::getRelocationTypeName(DataRefImpl Rel,
650 error_code COFFObjectFile::getRelocationAdditionalInfo(DataRefImpl Rel,
655 error_code COFFObjectFile::getRelocationValueString(DataRefImpl Rel,
659 if (error_code ec = getSymbol(reloc->SymbolTableIndex, symb)) return ec;
664 if (error_code ec = getSymbolName(sym, symname)) return ec;
672 error_code ec;