Lines Matching refs:module_spec

222     const ModuleSpec &module_spec, Process *process, ModuleSP &module_sp,  in GetSharedModule()  argument
226 return ModuleList::GetSharedModule(module_spec, module_sp, in GetSharedModule()
258 return GetRemoteSharedModule(module_spec, process, module_sp, resolver, in GetSharedModule()
263 const ArchSpec &arch, ModuleSpec &module_spec) { in GetModuleSpec() argument
271 module_spec); in GetModuleSpec()
855 Platform::ResolveExecutable(const ModuleSpec &module_spec, in ResolveExecutable() argument
859 if (FileSystem::Instance().Exists(module_spec.GetFileSpec())) { in ResolveExecutable()
860 if (module_spec.GetArchitecture().IsValid()) { in ResolveExecutable()
861 error = ModuleList::GetSharedModule(module_spec, exe_module_sp, in ResolveExecutable()
868 ModuleSpec arch_module_spec(module_spec); in ResolveExecutable()
882 module_spec.GetFileSpec().GetPath().c_str()); in ResolveExecutable()
1521 ModuleSpec &module_spec, lldb::ModuleSP &module_sp, in GetCachedExecutable() argument
1523 const auto platform_spec = module_spec.GetFileSpec(); in GetCachedExecutable()
1525 module_spec, module_sp, module_search_paths_ptr, remote_platform); in GetCachedExecutable()
1527 module_spec.GetFileSpec() = module_sp->GetFileSpec(); in GetCachedExecutable()
1528 module_spec.GetPlatformFileSpec() = platform_spec; in GetCachedExecutable()
1535 const ModuleSpec &module_spec, lldb::ModuleSP &module_sp, in LoadCachedExecutable() argument
1537 return GetRemoteSharedModule(module_spec, nullptr, module_sp, in LoadCachedExecutable()
1545 Status Platform::GetRemoteSharedModule(const ModuleSpec &module_spec, in GetRemoteSharedModule() argument
1555 if (process->GetModuleSpec(module_spec.GetFileSpec(), in GetRemoteSharedModule()
1556 module_spec.GetArchitecture(), in GetRemoteSharedModule()
1558 if (!module_spec.GetUUID().IsValid() || in GetRemoteSharedModule()
1559 module_spec.GetUUID() == resolved_module_spec.GetUUID()) { in GetRemoteSharedModule()
1565 if (!module_spec.GetArchitecture().IsValid()) { in GetRemoteSharedModule()
1570 ModuleSpec arch_module_spec(module_spec); in GetRemoteSharedModule()
1588 if (GetModuleSpec(module_spec.GetFileSpec(), module_spec.GetArchitecture(), in GetRemoteSharedModule()
1590 if (!module_spec.GetUUID().IsValid() || in GetRemoteSharedModule()
1591 module_spec.GetUUID() == resolved_module_spec.GetUUID()) { in GetRemoteSharedModule()
1600 return module_resolver(module_spec); in GetRemoteSharedModule()
1605 if (module_spec.GetUUID().IsValid()) { in GetRemoteSharedModule()
1606 resolved_module_spec.GetUUID() = module_spec.GetUUID(); in GetRemoteSharedModule()
1619 bool Platform::GetCachedSharedModule(const ModuleSpec &module_spec, in GetCachedSharedModule() argument
1630 GetModuleCacheRoot(), GetCacheHostname(), module_spec, in GetCachedSharedModule()
1631 [this](const ModuleSpec &module_spec, in GetCachedSharedModule()
1634 module_spec.GetFileSpec(), module_spec.GetObjectOffset(), in GetCachedSharedModule()
1635 module_spec.GetObjectSize(), tmp_download_file_spec); in GetCachedSharedModule()
1647 __FUNCTION__, module_spec.GetUUID().GetAsString().c_str(), in GetCachedSharedModule()