Home | History | Annotate | Download | only in common

Lines Matching defs:module

175 // Compares the loaded |module| file name matches |module_name|.
176 bool IsExpandedModuleName(HMODULE module, const wchar_t* module_name) {
178 DWORD sz = ::GetModuleFileNameW(module, path, arraysize(path));
194 HMODULE module = ::GetModuleHandleW(module_name);
195 if (!module) {
196 // The module could have been loaded with a 8.3 short name. We use
206 module = ::GetModuleHandleW(alt_name.c_str());
207 if (!module)
211 if (!IsExpandedModuleName(module, module_name))
222 // Eviction of injected DLLs is done by the sandbox so that the injected module