HomeSort by relevance Sort by last modified time
    Searched refs:dos_header (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/chrome/browser/install_verification/win/
imported_module_verification.cc 41 IMAGE_DOS_HEADER* dos_header = local
45 DCHECK(dos_header->e_lfanew);
47 module_handle + dos_header->e_lfanew / sizeof(uintptr_t));
  /external/chromium_org/chrome/browser/safe_browsing/
pe_image_reader_win_unittest.cc 50 const IMAGE_DOS_HEADER* dos_header = image_reader_.GetDosHeader(); local
51 ASSERT_NE(reinterpret_cast<const IMAGE_DOS_HEADER*>(NULL), dos_header); local
52 EXPECT_EQ(IMAGE_DOS_SIGNATURE, dos_header->e_magic);
pe_image_reader_win.cc 167 const IMAGE_DOS_HEADER* dos_header = NULL; local
168 if (!GetStructureAt(0, &dos_header) ||
169 dos_header->e_magic != IMAGE_DOS_SIGNATURE ||
170 dos_header->e_lfanew < 0) {
download_protection_service_unittest.cc     [all...]
  /external/chromium_org/base/win/
pe_image.cc 81 PIMAGE_DOS_HEADER dos_header = GetDosHeader(); local
84 reinterpret_cast<char*>(dos_header) + dos_header->e_lfanew);
502 PIMAGE_DOS_HEADER dos_header = GetDosHeader(); local
504 if (dos_header->e_magic != IMAGE_DOS_SIGNATURE)
  /external/chromium_org/third_party/openssl/openssl/crypto/
cryptlib.c 760 IMAGE_DOS_HEADER *dos_header = (IMAGE_DOS_HEADER *)hinstDLL; local
763 if (dos_header->e_magic==IMAGE_DOS_SIGNATURE)
765 nt_headers = (IMAGE_NT_HEADERS *)((char *)dos_header
766 + dos_header->e_lfanew);
  /external/openssl/crypto/
cryptlib.c 746 IMAGE_DOS_HEADER *dos_header = (IMAGE_DOS_HEADER *)hinstDLL; local
749 if (dos_header->e_magic==IMAGE_DOS_SIGNATURE)
751 nt_headers = (IMAGE_NT_HEADERS *)((char *)dos_header
752 + dos_header->e_lfanew);
  /external/lldb/source/Plugins/ObjectFile/PECOFF/
ObjectFilePECOFF.h 130 typedef struct dos_header { // DOS .EXE header struct in class:ObjectFilePECOFF
  /external/llvm/include/llvm/Object/
COFF.h 31 struct dos_header { struct in namespace:llvm::object

Completed in 393 milliseconds