Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp35 ModuleSpec resolved_module_spec(module_spec); in ResolveExecutable() local
39 FileSpec &resolved_file_spec = resolved_module_spec.GetFileSpec(); in ResolveExecutable()
42 resolved_module_spec.GetFileSpec().SetFile(resolved_file_spec.GetPath(), in ResolveExecutable()
50 return GetCachedExecutable(resolved_module_spec, exe_module_sp, in ResolveExecutable()
54 return Platform::ResolveExecutable(resolved_module_spec, exe_module_sp, in ResolveExecutable()
H A DPlatform.cpp738 ModuleSpec resolved_module_spec(module_spec); in ResolveExecutable() local
741 Host::ResolveExecutableInBundle(resolved_module_spec.GetFileSpec()); in ResolveExecutable()
743 if (!FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec()) && in ResolveExecutable()
746 resolved_module_spec.GetFileSpec()); in ResolveExecutable()
748 if (resolved_module_spec.GetArchitecture().IsValid() || in ResolveExecutable()
749 resolved_module_spec.GetUUID().IsValid()) { in ResolveExecutable()
751 ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
766 resolved_module_spec.GetArchitecture() = arch; in ResolveExecutable()
768 ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
782 if (!FileSystem::Instance().Readable(resolved_module_spec.GetFileSpec())) in ResolveExecutable()
[all …]
/src/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp888 auto resolved_module_spec(module_spec); in GetSharedModule() local
889 resolved_module_spec.GetFileSpec() = search_path_spec; in GetSharedModule()
890 module_sp = std::make_shared<Module>(resolved_module_spec); in GetSharedModule()