HomeSort by relevance Sort by last modified time
    Searched defs:module_handle (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/browser/install_verification/win/
imported_module_verification.cc 33 HMODULE module_handle,
36 DCHECK(module_handle);
42 reinterpret_cast<IMAGE_DOS_HEADER*>(module_handle);
47 module_handle + dos_header->e_lfanew / sizeof(uintptr_t));
53 reinterpret_cast<IMAGE_IMPORT_DESCRIPTOR*>(module_handle +
59 module_handle + image_descriptor->FirstThunk / sizeof(uintptr_t));
85 HMODULE module_handle = ::GetModuleHandle(kModulesToScan[i]); local
86 if (module_handle) {
87 ScanImportAddressTable(module_handle,
  /external/chromium_org/base/win/
iat_patch_function.cc 91 // module_handle Module to be intercepted
101 DWORD InterceptImportedFunction(HMODULE module_handle,
106 if ((NULL == module_handle) || (NULL == imported_from_module) ||
112 base::win::PEImage target_image(module_handle);
242 HMODULE module_handle = LoadLibraryW(module); local
244 if (module_handle == NULL) {
249 DWORD error = InterceptImportedFunction(module_handle,
258 module_handle_ = module_handle;
261 FreeLibrary(module_handle);

Completed in 92 milliseconds