Home
last modified time | relevance | path

Searched refs:target_images (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/lldb/source/Core/
DSearchFilter.cpp265 const ModuleList &target_images = m_target_sp->GetImages(); in DoModuleIteration() local
266 std::lock_guard<std::recursive_mutex> guard(target_images.GetMutex()); in DoModuleIteration()
268 size_t n_modules = target_images.GetSize(); in DoModuleIteration()
272 ModuleSP module_sp(target_images.GetModuleAtIndexUnlocked(i)); in DoModuleIteration()
755 const ModuleList &target_images = m_target_sp->GetImages(); in Search() local
756 std::lock_guard<std::recursive_mutex> guard(target_images.GetMutex()); in Search()
758 const size_t num_modules = target_images.GetSize(); in Search()
761 lldb::ModuleSP module_sp = target_images.GetModuleAtIndexUnlocked(i); in Search()
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangASTSource.cpp691 const ModuleList &target_images = m_target->GetImages(); in FillNamespaceMap() local
692 std::lock_guard<std::recursive_mutex> guard(target_images.GetMutex()); in FillNamespaceMap()
694 for (size_t i = 0, e = target_images.GetSize(); i < e; ++i) { in FillNamespaceMap()
695 lldb::ModuleSP image = target_images.GetModuleAtIndexUnlocked(i); in FillNamespaceMap()
1668 const ModuleList &target_images = m_target->GetImages(); in CompleteNamespaceMap() local
1669 std::lock_guard<std::recursive_mutex> guard(target_images.GetMutex()); in CompleteNamespaceMap()
1673 for (size_t i = 0, e = target_images.GetSize(); i < e; ++i) { in CompleteNamespaceMap()
1674 lldb::ModuleSP image = target_images.GetModuleAtIndexUnlocked(i); in CompleteNamespaceMap()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderDarwin.cpp101 const ModuleList &target_images = target.GetImages(); in FindTargetModuleForImageInfo() local
116 ModuleSP module_sp(target_images.FindFirstModule(module_spec)); in FindTargetModuleForImageInfo()
641 ModuleList &target_images = target.GetImages(); in AddModulesUsingImageInfos() local
668 target_images.FindFirstModule(module_spec)); in AddModulesUsingImageInfos()
702 target_images.AppendIfNeeded(image_module_sp); in AddModulesUsingImageInfos()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DDynamicLoaderDarwinKernel.cpp782 const ModuleList &target_images = target.GetImages(); in LoadImageUsingMemoryModule() local
783 m_module_sp = target_images.FindModule(m_uuid); in LoadImageUsingMemoryModule()