MCPcopy Create free account
hub / github.com/audacity/audacity / CheckModuleLoaded

Method CheckModuleLoaded

libraries/lib-module-manager/ModuleManager.cpp:556–564  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

554}
555
556bool ModuleManager::CheckModuleLoaded(const FilePath& moduleName) const
557{
558 for (const auto &module : mModules) {
559 if (wxFileName(module->GetName()).GetName() == wxFileName(moduleName).GetName()) {
560 return true;
561 }
562 }
563 return false;
564}
565
566bool ModuleManager::IsProviderValid(const PluginID & WXUNUSED(providerID),
567 const PluginPath & path) const

Callers 1

PopulateMethod · 0.80

Calls 2

wxFileNameClass · 0.50
GetNameMethod · 0.45

Tested by

no test coverage detected