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

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

Completed in 4875 milliseconds