Home
last modified time | relevance | path

Searched refs:matching_module_spec (Results 1 – 2 of 2) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDTargetList.cpp162 ModuleSpec matching_module_spec; in CreateTargetInternal() local
166 if (module_specs.GetModuleSpecAtIndex(0, matching_module_spec)) in CreateTargetInternal()
170 if (platform_arch.IsCompatibleMatch(matching_module_spec.GetArchitecture())) in CreateTargetInternal()
177 platform_arch = matching_module_spec.GetArchitecture(); in CreateTargetInternal()
184matching_module_spec.GetArchitecture().GetTriple().str().c_str(), in CreateTargetInternal()
193 platform_arch = matching_module_spec.GetArchitecture(); in CreateTargetInternal()
202 if (module_specs.FindMatchingModuleSpec(module_spec, matching_module_spec)) in CreateTargetInternal()
205 platform_arch = matching_module_spec.GetArchitecture(); in CreateTargetInternal()
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDModule.cpp187 ModuleSpec matching_module_spec; in Module() local
188 if (modules_specs.FindMatchingModuleSpec(module_spec, matching_module_spec) == 0) in Module()
193 else if (matching_module_spec.GetFileSpec()) in Module()
194 m_mod_time = matching_module_spec.GetFileSpec().GetModificationTime(); in Module()
197 if (matching_module_spec.GetArchitecture().IsValid()) in Module()
198 m_arch = matching_module_spec.GetArchitecture(); in Module()
206 else if (matching_module_spec.GetFileSpec()) in Module()
207 m_file = matching_module_spec.GetFileSpec(); in Module()
212 else if (matching_module_spec.GetPlatformFileSpec()) in Module()
213 m_platform_file = matching_module_spec.GetPlatformFileSpec(); in Module()
[all …]