Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DModuleList.h394 lldb::ModuleSP FindModule(const Module *module_ptr) const;
489 bool RemoveIfOrphaned(const Module *module_ptr);
533 static bool ModuleIsInCache(const Module *module_ptr);
549 static bool RemoveSharedModuleIfOrphaned(const Module *module_ptr);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DModuleList.cpp262 bool ModuleList::RemoveIfOrphaned(const Module *module_ptr) { in RemoveIfOrphaned() argument
263 if (module_ptr) { in RemoveIfOrphaned()
267 if (pos->get() == module_ptr) { in RemoveIfOrphaned()
509 ModuleSP ModuleList::FindModule(const Module *module_ptr) const { in FindModule()
518 if ((*pos).get() == module_ptr) { in FindModule()
757 bool ModuleList::ModuleIsInCache(const Module *module_ptr) { in ModuleIsInCache() argument
758 if (module_ptr) { in ModuleIsInCache()
760 return shared_module_list.FindModule(module_ptr).get() != nullptr; in ModuleIsInCache()
1021 bool ModuleList::RemoveSharedModuleIfOrphaned(const Module *module_ptr) { in RemoveSharedModuleIfOrphaned() argument
1022 return GetSharedModuleList().RemoveIfOrphaned(module_ptr); in RemoveSharedModuleIfOrphaned()