Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Target/
H A DRemoteAwarePlatform.cpp39 ModuleSpec resolved_module_spec(module_spec); in ResolveExecutable() local
44 if (!FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec())) { in ResolveExecutable()
45 resolved_module_spec.GetFileSpec().GetPath(exe_path, sizeof(exe_path)); in ResolveExecutable()
46 resolved_module_spec.GetFileSpec().SetFile(exe_path, in ResolveExecutable()
48 FileSystem::Instance().Resolve(resolved_module_spec.GetFileSpec()); in ResolveExecutable()
51 if (!FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec())) in ResolveExecutable()
53 resolved_module_spec.GetFileSpec()); in ResolveExecutable()
56 Host::ResolveExecutableInBundle(resolved_module_spec.GetFileSpec()); in ResolveExecutable()
58 if (FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec())) in ResolveExecutable()
62 resolved_module_spec.GetFileSpec()); in ResolveExecutable()
[all …]
H A DPlatform.cpp812 ModuleSpec resolved_module_spec(module_spec); in ResolveRemoteExecutable() local
815 Host::ResolveExecutableInBundle(resolved_module_spec.GetFileSpec()); in ResolveRemoteExecutable()
817 if (FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec()) || in ResolveRemoteExecutable()
819 if (resolved_module_spec.GetArchitecture().IsValid() || in ResolveRemoteExecutable()
820 resolved_module_spec.GetUUID().IsValid()) { in ResolveRemoteExecutable()
821 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveRemoteExecutable()
836 resolved_module_spec.GetArchitecture() = arch; in ResolveRemoteExecutable()
837 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveRemoteExecutable()
852 if (FileSystem::Instance().Readable(resolved_module_spec.GetFileSpec())) { in ResolveRemoteExecutable()
855 resolved_module_spec.GetFileSpec(), GetPluginName(), in ResolveRemoteExecutable()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformRemoteDarwinDevice.cpp72 ModuleSpec resolved_module_spec(ms); in ResolveExecutable() local
77 Host::ResolveExecutableInBundle(resolved_module_spec.GetFileSpec()); in ResolveExecutable()
79 if (FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec())) { in ResolveExecutable()
80 if (resolved_module_spec.GetArchitecture().IsValid() || in ResolveExecutable()
81 resolved_module_spec.GetUUID().IsValid()) { in ResolveExecutable()
82 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
96 resolved_module_spec.GetArchitecture() = arch; in ResolveExecutable()
97 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
111 if (FileSystem::Instance().Readable(resolved_module_spec.GetFileSpec())) { in ResolveExecutable()
114 resolved_module_spec.GetFileSpec(), GetPluginName(), in ResolveExecutable()
[all …]
H A DPlatformAppleSimulator.cpp382 ModuleSpec resolved_module_spec(module_spec); in ResolveExecutable() local
393 Host::ResolveExecutableInBundle(resolved_module_spec.GetFileSpec()); in ResolveExecutable()
395 if (FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec())) { in ResolveExecutable()
396 if (resolved_module_spec.GetArchitecture().IsValid()) { in ResolveExecutable()
397 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
411 resolved_module_spec.GetArchitecture() = arch; in ResolveExecutable()
416 resolved_module_spec.GetArchitecture().GetCore()) { in ResolveExecutable()
417 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
432 if (FileSystem::Instance().Readable(resolved_module_spec.GetFileSpec())) { in ResolveExecutable()
435 resolved_module_spec.GetFileSpec(), GetPluginName(), in ResolveExecutable()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DModuleList.cpp885 auto resolved_module_spec(module_spec); in GetSharedModule() local
886 resolved_module_spec.GetFileSpec() = search_path_spec; in GetSharedModule()
887 module_sp = std::make_shared<Module>(resolved_module_spec); in GetSharedModule()