Home
last modified time | relevance | path

Searched refs:module_ptr (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DModuleList.h323 lldb::ModuleSP FindModule(const Module *module_ptr) const;
410 bool RemoveIfOrphaned(const Module *module_ptr);
447 static bool ModuleIsInCache(const Module *module_ptr);
462 static bool RemoveSharedModuleIfOrphaned(const Module *module_ptr);
/llvm-project-15.0.7/lldb/source/Core/
H A DModuleList.cpp324 bool ModuleList::RemoveIfOrphaned(const Module *module_ptr) { in RemoveIfOrphaned() argument
325 if (module_ptr) { in RemoveIfOrphaned()
329 if (pos->get() == module_ptr) { in RemoveIfOrphaned()
529 ModuleSP ModuleList::FindModule(const Module *module_ptr) const { in FindModule()
538 if ((*pos).get() == module_ptr) { in FindModule()
759 bool ModuleList::ModuleIsInCache(const Module *module_ptr) { in ModuleIsInCache() argument
760 if (module_ptr) { in ModuleIsInCache()
762 return shared_module_list.FindModule(module_ptr).get() != nullptr; in ModuleIsInCache()
1024 bool ModuleList::RemoveSharedModuleIfOrphaned(const Module *module_ptr) { in RemoveSharedModuleIfOrphaned() argument
1025 return GetSharedModuleList().RemoveIfOrphaned(module_ptr); in RemoveSharedModuleIfOrphaned()