Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Core/
DModuleList.h326 lldb::ModuleSP FindModule(const Module *module_ptr) const;
413 bool RemoveIfOrphaned(const Module *module_ptr);
450 static bool ModuleIsInCache(const Module *module_ptr);
465 static bool RemoveSharedModuleIfOrphaned(const Module *module_ptr);
/external/llvm-project/lldb/source/Core/
DModuleList.cpp272 bool ModuleList::RemoveIfOrphaned(const Module *module_ptr) { in RemoveIfOrphaned() argument
273 if (module_ptr) { in RemoveIfOrphaned()
277 if (pos->get() == module_ptr) { in RemoveIfOrphaned()
496 ModuleSP ModuleList::FindModule(const Module *module_ptr) const { in FindModule()
505 if ((*pos).get() == module_ptr) { in FindModule()
732 bool ModuleList::ModuleIsInCache(const Module *module_ptr) { in ModuleIsInCache() argument
733 if (module_ptr) { in ModuleIsInCache()
735 return shared_module_list.FindModule(module_ptr).get() != nullptr; in ModuleIsInCache()
997 bool ModuleList::RemoveSharedModuleIfOrphaned(const Module *module_ptr) { in RemoveSharedModuleIfOrphaned() argument
998 return GetSharedModuleList().RemoveIfOrphaned(module_ptr); in RemoveSharedModuleIfOrphaned()
/external/google-breakpad/src/processor/
Dmicrodump.cc108 linked_ptr<const CodeModule> module_ptr(module); in Add() local
109 if (!map_.StoreRange(module->base_address(), module->size(), module_ptr)) { in Add()