Home
last modified time | relevance | path

Searched refs:arch_spec (Results 1 – 4 of 4) sorted by relevance

/external/lldb/source/Target/
DTarget.cpp1069 Target::SetArchitecture (const ArchSpec &arch_spec) in SetArchitecture() argument
1072 if (m_arch.IsCompatibleMatch(arch_spec) || !m_arch.IsValid()) in SetArchitecture()
1078 m_arch = arch_spec; in SetArchitecture()
1080 …get::SetArchitecture setting architecture to %s (%s)", arch_spec.GetArchitectureName(), arch_spec.… in SetArchitecture()
1087 …et::SetArchitecture changing architecture to %s (%s)", arch_spec.GetArchitectureName(), arch_spec.… in SetArchitecture()
1088 m_arch = arch_spec; in SetArchitecture()
1099 …rying to select executable file architecture %s (%s)", arch_spec.GetArchitectureName(), arch_spec.… in SetArchitecture()
1100 ModuleSpec module_spec (executable_sp->GetFileSpec(), arch_spec); in SetArchitecture()
/external/lldb/source/Host/macosx/
DHost.mm336 // const ArchSpec *arch_spec,
386 // if (arch_spec && arch_spec->IsValid())
388 // command_file.Printf("--arch=%s ", arch_spec->GetArchitectureName());
546 const ArchSpec &arch_spec = launch_info.GetArchitecture();
547 if (arch_spec.IsValid())
548 command.Printf("arch -arch %s ", arch_spec.GetArchitectureName());
552 if (arch_spec.IsValid())
553 command.Printf(" --arch=%s", arch_spec.GetArchitectureName());
1601 const ArchSpec &arch_spec = launch_info.GetArchitecture();
1602 cpu_type_t cpu = arch_spec.GetMachOCPUType();
[all …]
/external/lldb/include/lldb/Target/
DTarget.h865 SetArchitecture (const ArchSpec &arch_spec);
/external/lldb/source/API/
DSBTarget.cpp789 const ArchSpec &arch_spec = target_sp->GetArchitecture(); in Launch() local
790 if (arch_spec.IsValid()) in Launch()
791 launch_info.GetArchitecture () = arch_spec; in Launch()