Home
last modified time | relevance | path

Searched refs:platform_arch (Results 1 – 11 of 11) sorted by relevance

/external/lldb/source/Target/
DTargetList.cpp86 ArchSpec platform_arch(arch); in CreateTarget() local
105 if (platform_arch.IsValid()) in CreateTarget()
107 … if (!platform_arch.IsCompatibleMatch(matching_module_spec.GetArchitecture())) in CreateTarget()
110 platform_arch.GetTriple().str().c_str(), in CreateTarget()
119 platform_arch = matching_module_spec.GetArchitecture(); in CreateTarget()
130 platform_arch = matching_module_spec.GetArchitecture(); in CreateTarget()
157 platform_arch); in CreateTarget()
169 if (arch.IsValid() && !platform_sp->IsCompatibleArchitecture(arch, false, &platform_arch)) in CreateTarget()
171 platform_sp = Platform::GetPlatformForArchitecture(arch, &platform_arch); in CreateTarget()
175 if (!platform_arch.IsValid()) in CreateTarget()
[all …]
DPlatform.cpp733 ArchSpec platform_arch; in IsCompatibleArchitecture() local
737 … for (uint32_t arch_idx=0; GetSupportedArchitectureAtIndex (arch_idx, platform_arch); ++arch_idx) in IsCompatibleArchitecture()
739 if (arch.IsExactMatch(platform_arch)) in IsCompatibleArchitecture()
742 *compatible_arch_ptr = platform_arch; in IsCompatibleArchitecture()
749 … for (uint32_t arch_idx=0; GetSupportedArchitectureAtIndex (arch_idx, platform_arch); ++arch_idx) in IsCompatibleArchitecture()
751 if (arch.IsCompatibleMatch(platform_arch)) in IsCompatibleArchitecture()
754 *compatible_arch_ptr = platform_arch; in IsCompatibleArchitecture()
DProcess.cpp3187 ArchSpec platform_arch; in CompleteAttach() local
3188 platform_sp = platform_sp->GetPlatformForArchitecture (target_arch, &platform_arch); in CompleteAttach()
3192 m_target.SetArchitecture(platform_arch); in CompleteAttach()
/external/lldb/source/Interpreter/
DOptionGroupPlatform.cpp30 ArchSpec &platform_arch) const in CreatePlatformWithOptions()
39 …if (platform_arch.IsValid() && !platform_sp->IsCompatibleArchitecture(arch, false, &platform_arch)) in CreatePlatformWithOptions()
51 platform_sp = Platform::Create (arch, &platform_arch, error); in CreatePlatformWithOptions()
/external/lldb/source/Plugins/Platform/FreeBSD/
DPlatformFreeBSD.cpp243 ArchSpec platform_arch; in ResolveExecutable() local
244 for (uint32_t idx = 0; GetSupportedArchitectureAtIndex (idx, platform_arch); ++idx) in ResolveExecutable()
262 arch_names.PutCString (platform_arch.GetArchitectureName()); in ResolveExecutable()
622 ArchSpec platform_arch (Host::GetArchitecture (Host::eSystemDefaultArchitecture)); in GetSupportedArchitectureAtIndex() local
624 if (platform_arch.IsExactMatch(platform_arch64)) in GetSupportedArchitectureAtIndex()
/external/chromium_org/chrome/browser/component_updater/
Dwidevine_cdm_component_installer.cc107 std::string platform_arch = kWidevineCdmPlatform; in GetPlatformDirectory() local
108 platform_arch += '_'; in GetPlatformDirectory()
109 platform_arch += kWidevineCdmArch; in GetPlatformDirectory()
110 return base_path.AppendASCII("_platform_specific").AppendASCII(platform_arch); in GetPlatformDirectory()
/external/lldb/source/Plugins/Platform/MacOSX/
DPlatformRemoteiOS.cpp250 ArchSpec platform_arch; in ResolveExecutable() local
251 for (uint32_t idx = 0; GetSupportedArchitectureAtIndex (idx, platform_arch); ++idx) in ResolveExecutable()
253 ModuleSpec module_spec (resolved_exe_file, platform_arch); in ResolveExecutable()
270 arch_names.PutCString (platform_arch.GetArchitectureName()); in ResolveExecutable()
DPlatformiOSSimulator.cpp213 ArchSpec platform_arch; in ResolveExecutable() local
233 arch_names.PutCString (platform_arch.GetArchitectureName()); in ResolveExecutable()
DPlatformDarwin.cpp710 ArchSpec platform_arch (Host::GetArchitecture (Host::eSystemDefaultArchitecture)); in x86GetSupportedArchitectureAtIndex() local
712 if (platform_arch.IsExactMatch(platform_arch64)) in x86GetSupportedArchitectureAtIndex()
/external/lldb/include/lldb/Interpreter/
DOptionGroupPlatform.h66 ArchSpec &platform_arch) const;
/external/lldb/source/Commands/
DCommandObjectPlatform.cpp98 ArchSpec platform_arch; in DoExecute() local
99 …tform_options.CreatePlatformWithOptions (m_interpreter, ArchSpec(), select, error, platform_arch)); in DoExecute()