HomeSort by relevance Sort by last modified time
    Searched defs:platform_arch (Results 1 - 6 of 6) sorted by null

  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformiOSSimulator.cpp 213 ArchSpec platform_arch; local
233 arch_names.PutCString (platform_arch.GetArchitectureName());
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());
  /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/Commands/
CommandObjectPlatform.cpp 98 ArchSpec platform_arch; local
99 PlatformSP platform_sp (m_platform_options.CreatePlatformWithOptions (m_interpreter, ArchSpec(), select, error, platform_arch));
    [all...]
  /external/lldb/source/Target/
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;

Completed in 125 milliseconds