Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Target/
H A DRemoteAwarePlatform.cpp38 ModuleSpec resolved_module_spec(module_spec); in ResolveExecutable() local
45 resolved_module_spec.GetFileSpec().SetFile(exe_path, in ResolveExecutable()
52 resolved_module_spec.GetFileSpec()); in ResolveExecutable()
61 resolved_module_spec.GetFileSpec()); in ResolveExecutable()
65 resolved_module_spec.GetFileSpec().GetPath().c_str()); in ResolveExecutable()
69 resolved_module_spec.GetFileSpec().GetPath().c_str()); in ResolveExecutable()
93 if (resolved_module_spec.GetArchitecture().IsValid()) { in ResolveExecutable()
101 resolved_module_spec.GetArchitecture().GetTriple(); in ResolveExecutable()
125 resolved_module_spec.GetFileSpec().GetPath().c_str(), in ResolveExecutable()
137 resolved_module_spec.GetArchitecture() = arch; in ResolveExecutable()
[all …]
H A DPlatform.cpp810 ModuleSpec resolved_module_spec(module_spec); in ResolveRemoteExecutable() local
817 if (resolved_module_spec.GetArchitecture().IsValid() || in ResolveRemoteExecutable()
818 resolved_module_spec.GetUUID().IsValid()) { in ResolveRemoteExecutable()
834 resolved_module_spec.GetArchitecture() = arch; in ResolveRemoteExecutable()
853 resolved_module_spec.GetFileSpec(), GetPluginName(), in ResolveRemoteExecutable()
1510 ModuleSpec resolved_module_spec; in GetRemoteSharedModule() local
1518 resolved_module_spec)) { in GetRemoteSharedModule()
1541 resolved_module_spec = arch_module_spec; in GetRemoteSharedModule()
1549 resolved_module_spec)) { in GetRemoteSharedModule()
1566 resolved_module_spec.GetUUID() = module_spec.GetUUID(); in GetRemoteSharedModule()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformRemoteDarwinDevice.cpp71 ModuleSpec resolved_module_spec(ms); in ResolveExecutable() local
76 Host::ResolveExecutableInBundle(resolved_module_spec.GetFileSpec()); in ResolveExecutable()
78 if (FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec())) { in ResolveExecutable()
79 if (resolved_module_spec.GetArchitecture().IsValid() || in ResolveExecutable()
80 resolved_module_spec.GetUUID().IsValid()) { in ResolveExecutable()
81 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
95 resolved_module_spec.GetArchitecture() = arch; in ResolveExecutable()
96 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
113 resolved_module_spec.GetFileSpec(), GetPluginName(), in ResolveExecutable()
118 resolved_module_spec.GetFileSpec().GetPath().c_str()); in ResolveExecutable()
[all …]
H A DPlatformAppleSimulator.cpp370 ModuleSpec resolved_module_spec(module_spec); in ResolveExecutable() local
381 Host::ResolveExecutableInBundle(resolved_module_spec.GetFileSpec()); in ResolveExecutable()
383 if (FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec())) { in ResolveExecutable()
384 if (resolved_module_spec.GetArchitecture().IsValid()) { in ResolveExecutable()
385 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
399 resolved_module_spec.GetArchitecture() = arch; in ResolveExecutable()
404 resolved_module_spec.GetArchitecture().GetCore()) { in ResolveExecutable()
405 error = ModuleList::GetSharedModule(resolved_module_spec, exe_module_sp, in ResolveExecutable()
420 if (FileSystem::Instance().Readable(resolved_module_spec.GetFileSpec())) { in ResolveExecutable()
423 resolved_module_spec.GetFileSpec(), GetPluginName(), in ResolveExecutable()
[all …]
/llvm-project-15.0.7/lldb/source/Core/
H A DModuleList.cpp876 auto resolved_module_spec(module_spec); in GetSharedModule() local
877 resolved_module_spec.GetFileSpec() = search_path_spec; in GetSharedModule()
878 module_sp = std::make_shared<Module>(resolved_module_spec); in GetSharedModule()