Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DCOFFObjectFile.cpp579 const data_directory *DataEntry = getDataDirectory(COFF::IMPORT_TABLE); in initImportTablePtr() local
580 if (!DataEntry) in initImportTablePtr()
584 if (DataEntry->RelativeVirtualAddress == 0) in initImportTablePtr()
587 uint32_t ImportTableRva = DataEntry->RelativeVirtualAddress; in initImportTablePtr()
594 if (Error E = checkOffset(Data, IntPtr, DataEntry->Size)) in initImportTablePtr()
603 const data_directory *DataEntry = in initDelayImportTablePtr() local
605 if (!DataEntry) in initDelayImportTablePtr()
607 if (DataEntry->RelativeVirtualAddress == 0) in initDelayImportTablePtr()
610 uint32_t RVA = DataEntry->RelativeVirtualAddress; in initDelayImportTablePtr()
611 NumberOfDelayImportDirectory = DataEntry->Size / in initDelayImportTablePtr()
[all …]
H A DWindowsResource.cpp428 UNWRAP_REF_OR_RETURN(DataEntry, RSR.getEntryData(Entry)); in addChildren()
435 UNWRAP_OR_RETURN(Contents, RSR.getContents(DataEntry)); in addChildren()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp2060 auto &DataEntry = in printResourceDirectoryTable() local
2062 W.printHex("DataRVA", DataEntry.DataRVA); in printResourceDirectoryTable()
2063 W.printNumber("DataSize", DataEntry.DataSize); in printResourceDirectoryTable()
2064 W.printNumber("Codepage", DataEntry.Codepage); in printResourceDirectoryTable()
2065 W.printNumber("Reserved", DataEntry.Reserved); in printResourceDirectoryTable()
2067 unwrapOrError(Obj->getFileName(), RSF.getContents(DataEntry)); in printResourceDirectoryTable()