reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Utility/ArchSpec.h
  482   bool IsCompatibleMatch(const ArchSpec &rhs) const;

References

tools/lldb/include/lldb/Core/ModuleSpec.h
  279         if (!GetArchitecture().IsCompatibleMatch(
tools/lldb/source/Breakpoint/BreakpointLocationList.cpp
  277         if (!arch.IsCompatibleMatch(module_sp->GetArchitecture())) {
tools/lldb/source/Core/Module.cpp
 1536   return m_arch.IsCompatibleMatch(new_arch);
 1576     if (!m_arch.IsCompatibleMatch(arch))
 1607   if (!m_arch.IsCompatibleMatch(arch_spec)) {
tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
  483       if (!process->GetTarget().GetArchitecture().IsCompatibleMatch(
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
  752     if (arch_spec.IsCompatibleMatch(maccatalyst_spec))
tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp
  209         !pos->second->GetArchitecture().IsCompatibleMatch(arch))
tools/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/ObjectContainerUniversalMachO.cpp
  189             arch.IsCompatibleMatch(curr_arch))
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 1035       if (module_arch.IsValid() && !module_arch.IsCompatibleMatch(mach_arch))
 4998       if (module_arch.IsCompatibleMatch(mach_arch))
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  359             if (!host_arch.IsCompatibleMatch(GetTarget().GetArchitecture())) {
tools/lldb/source/Symbol/LocateSymbolFile.cpp
   61             spec.GetArchitecture().IsCompatibleMatch(*arch)))) {
tools/lldb/source/Target/Platform.cpp
 1205         if (arch.IsCompatibleMatch(platform_arch)) {
tools/lldb/source/Target/Target.cpp
 1480     if (m_arch.GetSpec().IsCompatibleMatch(arch_spec)) {
 1483       if (m_arch.GetSpec().IsCompatibleMatch(other)) {
 1543     if (m_arch.GetSpec().IsCompatibleMatch(arch_spec)) {
tools/lldb/source/Target/TargetList.cpp
  133             if (platform_arch.IsCompatibleMatch(
  470           if (!exe_arch_ptr->IsCompatibleMatch(exe_module->GetArchitecture()))
tools/lldb/source/Utility/ArchSpec.cpp
  878       IsCompatibleMatch(other) && GetCore() == ArchSpec::eCore_arm_generic &&
tools/lldb/source/Utility/ProcessInfo.cpp
  247          m_match_info.GetArchitecture().IsCompatibleMatch(arch_spec);
tools/lldb/unittests/Utility/ArchSpecTest.cpp
  245     ASSERT_TRUE(A.IsCompatibleMatch(B));
  253     ASSERT_TRUE(A.IsCompatibleMatch(B));
  259     ASSERT_TRUE(A.IsCompatibleMatch(B));
  265     ASSERT_FALSE(A.IsCompatibleMatch(B));
  271     ASSERT_FALSE(A.IsCompatibleMatch(B));
  279     ASSERT_FALSE(A.IsCompatibleMatch(B));
  286     ASSERT_FALSE(A.IsCompatibleMatch(B));
  293     ASSERT_TRUE(A.IsCompatibleMatch(B));