Home | History | Annotate | Download | only in common

Lines Matching full:module_name

175 // Compares the loaded |module| file name matches |module_name|.
176 bool IsExpandedModuleName(HMODULE module, const wchar_t* module_name) {
186 return (fname.BaseName().value() == module_name);
189 // Adds a single dll by |module_name| into the |policy| blacklist.
192 void BlacklistAddOneDll(const wchar_t* module_name,
194 HMODULE module = ::GetModuleHandleW(module_name);
198 std::wstring name(module_name);
211 if (!IsExpandedModuleName(module, module_name))
216 policy->AddDllToUnload(module_name);
217 VLOG(1) << "dll to unload found: " << module_name;