Searched refs:dos_header (Results 1 - 5 of 5) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win.cc332 IMAGE_DOS_HEADER dos_header; local
334 if (!ReadFromFile(fd, &dos_header, sizeof(dos_header), &bytes_read) ||
335 bytes_read != sizeof(dos_header))
339 if (dos_header.e_magic != IMAGE_DOS_SIGNATURE)
348 if (::SetFilePointer(fd, dos_header.e_lfanew, nullptr, FILE_BEGIN) ==
/external/llvm/include/llvm/Object/
H A DCOFF.h40 struct dos_header { struct in namespace:llvm::object
712 const dos_header *getDOSHeader() const {
715 return reinterpret_cast<const dos_header *>(base());
/external/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp70 void printDOSHeader(const dos_header *DH);
399 if (const dos_header *DH = Obj->getDOSHeader())
403 void COFFDumper::printDOSHeader(const dos_header *DH) {
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp572 if (checkSize(Data, EC, sizeof(dos_header) + sizeof(COFF::PEMagic))) {
575 const auto *DH = reinterpret_cast<const dos_header *>(base());
/external/llvm/tools/yaml2obj/
H A Dyaml2coff.cpp348 object::dos_header DH;

Completed in 539 milliseconds