Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOS.cpp470 const ModuleList &target_modules = target.GetImages(); in CanLoadImage() local
471 std::lock_guard<std::recursive_mutex> guard(target_modules.GetMutex()); in CanLoadImage()
H A DDynamicLoaderDarwin.cpp217 const ModuleList &target_modules = target.GetImages(); in UnloadAllImages() local
218 std::lock_guard<std::recursive_mutex> guard(target_modules.GetMutex()); in UnloadAllImages()
221 for (ModuleSP module_sp : target_modules.Modules()) { in UnloadAllImages()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectTarget.cpp2274 const ModuleList &target_modules = target->GetImages(); in DoExecute() local
2275 std::lock_guard<std::recursive_mutex> guard(target_modules.GetMutex()); in DoExecute()
2276 const size_t num_modules = target_modules.GetSize(); in DoExecute()
2283 for (ModuleSP module_sp : target_modules.ModulesNoLocking()) { in DoExecute()
2362 const ModuleList &target_modules = target->GetImages(); in DoExecute() local
2364 if (target_modules.GetSize() > 0) { in DoExecute()
2366 for (ModuleSP module_sp : target_modules.ModulesNoLocking()) { in DoExecute()
3887 const ModuleList &target_modules = target->GetImages(); in DoExecute() local
3888 std::lock_guard<std::recursive_mutex> guard(target_modules.GetMutex()); in DoExecute()
3889 if (target_modules.GetSize() == 0) { in DoExecute()
[all …]
/llvm-project-15.0.7/lldb/source/Core/
H A DSearchFilter.cpp425 const ModuleList &target_modules = m_target_sp->GetImages(); in Search() local
426 std::lock_guard<std::recursive_mutex> guard(target_modules.GetMutex()); in Search()