/external/chromium_org/base/win/ |
pe_image.h | 28 class PEImage { 33 typedef bool (*EnumSectionsFunction)(const PEImage &image, 43 typedef bool (*EnumExportsFunction)(const PEImage &image, DWORD ordinal, 51 typedef bool (*EnumImportChunksFunction)(const PEImage &image, LPCSTR module, 59 typedef bool (*EnumImportsFunction)(const PEImage &image, LPCSTR module, 67 typedef bool (*EnumDelayImportChunksFunction)(const PEImage &image, 79 typedef bool (*EnumRelocsFunction)(const PEImage &image, WORD type, 82 explicit PEImage(HMODULE module) : module_(module) {} 83 explicit PEImage(const void* module) { 230 // This class is an extension to the PEImage class that allows working with P [all...] |
pe_image.cc | 5 // This file implements PEImage, a generic class to manipulate PE files. 24 PEImage::EnumImportsFunction callback; 48 bool ProcessImportChunk(const PEImage &image, LPCSTR module, 59 bool ProcessDelayImportChunk(const PEImage &image, 72 void PEImage::set_module(HMODULE module) { 76 PIMAGE_DOS_HEADER PEImage::GetDosHeader() const { 80 PIMAGE_NT_HEADERS PEImage::GetNTHeaders() const { 87 PIMAGE_SECTION_HEADER PEImage::GetSectionHeader(UINT section) const { 97 WORD PEImage::GetNumSections() const { 101 DWORD PEImage::GetImageDirectoryEntrySize(UINT directory) const [all...] |
pe_image_unittest.cc | 5 // This file contains unit tests for PEImage. 15 bool ExportsCallback(const PEImage &image, 28 bool ImportsCallback(const PEImage &image, 41 bool SectionsCallback(const PEImage &image, 52 bool RelocsCallback(const PEImage &image, 62 bool ImportChunksCallback(const PEImage &image, 73 bool DelayImportChunksCallback(const PEImage &image, 206 PEImage pe(module); 256 PEImage pe(module);
|
iat_patch_function.cc | 44 bool InterceptEnumCallback(const base::win::PEImage& image, const char* module, 112 base::win::PEImage target_image(module_handle);
|
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/ |
module_integrity_verifier_win.h | 15 class PEImage; 29 // Helper to grab the addresses and size of the code section of a PEImage. 32 bool GetCodeAddrsAndSize(const base::win::PEImage& mem_peimage,
|
module_integrity_verifier_win.cc | 146 bool EnumRelocsCallback(const base::win::PEImage& mem_peimage, 192 bool EnumExportsCallback(const base::win::PEImage& mem_peimage, 207 bool GetCodeAddrsAndSize(const base::win::PEImage& mem_peimage, 257 base::win::PEImage mem_peimage(module_handle);
|
module_integrity_verifier_win_unittest.cc | 24 mem_peimage_ptr_.reset(new base::win::PEImage(mem_handle)); 87 scoped_ptr<base::win::PEImage> mem_peimage_ptr_;
|
/external/chromium_org/chrome/installer/test/ |
pe_image_resources.h | 19 namespace base { namespace win { class PEImage; } } 57 bool EnumResources(const base::win::PEImage& image, EnumResource_Fn callback,
|
pe_image_resources.cc | 29 const base::win::PEImage& image, const uint8* tree_base, DWORD tree_size, 110 bool EnumResources(const base::win::PEImage& image, EnumResource_Fn callback,
|
/external/chromium_org/sandbox/win/src/ |
service_resolver.cc | 31 base::win::PEImage module_image(module);
|
resolver.cc | 50 base::win::PEImage pe(interceptor_module);
|
eat_resolver.cc | 69 base::win::PEImage pe(module);
|
policy_broker.cc | 43 base::win::PEImage ntdll_image(ntdll);
|
sidestep_resolver.cc | 196 base::win::PEImage pe(base);
|
target_process.cc | 53 base::win::PEImage pe(exe);
|
win_utils.cc | 308 // Use PEImage to sanity-check that we have a valid ntdll handle. 309 base::win::PEImage ntdll_peimage(ntdll_local);
|
interception.cc | 450 base::win::PEImage ntdll_image(ntdll_base);
|
sandbox_nt_util.cc | 368 base::win::PEImage pe(module);
|
/external/chromium_org/chrome_elf/ |
ntdll_cache.cc | 29 bool EnumExportsCallback(const base::win::PEImage& image, 49 base::win::PEImage ntdll_image(ntdll_handle);
|
elf_imports_unittest.cc | 25 static bool ImportsCallback(const base::win::PEImage &image,
|
/external/chromium_org/base/debug/ |
profiler.cc | 115 base::win::PEImage image(this_module); 142 // Callback function to PEImage::EnumImportChunks. 144 const base::win::PEImage &image, const char* module_name, 186 base::win::PEImage image(this_module);
|
/external/chromium_org/chrome/app/ |
image_pre_reader_win.cc | 249 // Now we have all of the headers. This is enough to let us use the PEImage 251 base::win::PEImage pe_image(reinterpret_cast<HMODULE>(&headers[0])); 298 base::win::PEImage pe_image(dll_module); 381 base::win::PEImage pe_image(dll_module);
|
/external/chromium_org/chrome_elf/blacklist/ |
blacklist_interceptions.cc | 125 void SafeGetImageInfo(const base::win::PEImage& pe, 162 base::win::PEImage pe(module);
|
/external/chromium_org/content/common/ |
plugin_list_win.cc | 214 base::win::PEImage image(plugin_image.data());
|