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

  /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/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...]

Completed in 76 milliseconds