/external/lldb/source/Interpreter/ |
OptionGroupPlatform.cpp | 30 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/ |
TargetList.cpp | 86 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...] |
Platform.cpp | 733 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;
|
Process.cpp | [all...] |
/external/lldb/include/lldb/Interpreter/ |
OptionGroupPlatform.h | 66 ArchSpec &platform_arch) const;
|
/external/chromium_org/chrome/browser/component_updater/ |
widevine_cdm_component_installer.cc | 104 // _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/ |
PlatformFreeBSD.cpp | 243 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/ |
PlatformRemoteiOS.cpp | 250 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());
|
PlatformiOSSimulator.cpp | 213 ArchSpec platform_arch; local 233 arch_names.PutCString (platform_arch.GetArchitectureName());
|
PlatformDarwin.cpp | 710 ArchSpec platform_arch (Host::GetArchitecture (Host::eSystemDefaultArchitecture)); 712 if (platform_arch.IsExactMatch(platform_arch64)) [all...] |
/external/lldb/source/Commands/ |
CommandObjectPlatform.cpp | 98 ArchSpec platform_arch; local 99 PlatformSP platform_sp (m_platform_options.CreatePlatformWithOptions (m_interpreter, ArchSpec(), select, error, platform_arch)); [all...] |