Home
last modified time | relevance | path

Searched refs:DataEntry (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DCOFFObjectFile.cpp580 const data_directory *DataEntry = getDataDirectory(COFF::IMPORT_TABLE); in initImportTablePtr() local
581 if (!DataEntry) in initImportTablePtr()
585 if (DataEntry->RelativeVirtualAddress == 0) in initImportTablePtr()
588 uint32_t ImportTableRva = DataEntry->RelativeVirtualAddress; in initImportTablePtr()
595 if (Error E = checkOffset(Data, IntPtr, DataEntry->Size)) in initImportTablePtr()
604 const data_directory *DataEntry = in initDelayImportTablePtr() local
606 if (!DataEntry) in initDelayImportTablePtr()
608 if (DataEntry->RelativeVirtualAddress == 0) in initDelayImportTablePtr()
611 uint32_t RVA = DataEntry->RelativeVirtualAddress; in initDelayImportTablePtr()
612 NumberOfDelayImportDirectory = DataEntry->Size / in initDelayImportTablePtr()
[all …]
H A DWindowsResource.cpp427 UNWRAP_REF_OR_RETURN(DataEntry, RSR.getEntryData(Entry)); in addChildren()
434 UNWRAP_OR_RETURN(Contents, RSR.getContents(DataEntry)); in addChildren()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1968 auto &DataEntry = in printResourceDirectoryTable() local
1970 W.printHex("DataRVA", DataEntry.DataRVA); in printResourceDirectoryTable()
1971 W.printNumber("DataSize", DataEntry.DataSize); in printResourceDirectoryTable()
1972 W.printNumber("Codepage", DataEntry.Codepage); in printResourceDirectoryTable()
1973 W.printNumber("Reserved", DataEntry.Reserved); in printResourceDirectoryTable()
1975 unwrapOrError(Obj->getFileName(), RSF.getContents(DataEntry)); in printResourceDirectoryTable()