/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ProcessTrace.cpp | 113 info.SetArchitecture(GetArchitecture()); in GetProcessInfo()
|
H A D | Target.cpp | 1538 bool Target::SetArchitecture(const ArchSpec &arch_spec, bool set_platform, in SetArchitecture() function in Target 1643 return SetArchitecture(merged_arch); in MergeArchitecture() 1646 return SetArchitecture(arch_spec); in MergeArchitecture()
|
H A D | Process.cpp | 3107 GetTarget().SetArchitecture(process_arch); in CompleteAttach() 3126 GetTarget().SetArchitecture(platform_arch); in CompleteAttach() 3140 GetTarget().SetArchitecture(process_arch); in CompleteAttach()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/ |
H A D | ObjectContainerBSDArchive.h | 153 void SetArchitecture(const lldb_private::ArchSpec &arch) { m_arch = arch; } 160 void SetArchitecture(const lldb_private::ArchSpec &arch) { m_arch = arch; } SetArchitecture() function
|
H A D | ObjectContainerBSDArchive.cpp | 512 archive_sp->SetArchitecture(module_spec.GetArchitecture()); in ParseHeader()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/ |
H A D | ObjectFilePDB.cpp | 69 arch.SetArchitecture(eArchTypeCOFF, static_cast<int>(machine), in GetArchitecture()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/ |
H A D | EmulateInstructionARM.h | 96 SetArchitecture(arch); in EmulateInstructionARM() 124 virtual bool SetArchitecture(const ArchSpec &arch);
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | ArchSpec.h | 408 bool SetArchitecture(ArchitectureType arch_type, uint32_t cpu, uint32_t sub,
|
H A D | ProcessInfo.h | 66 void SetArchitecture(const ArchSpec &arch) { m_arch = arch; } in SetArchitecture() function
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/ |
H A D | DynamicLoaderFreeBSDKernel.cpp | 227 process->GetTarget().SetArchitecture(kernel_arch); in CheckForKernelImageAtAddress() 314 process->GetTarget().SetArchitecture(memory_module_sp->GetArchitecture()); in ReadMemoryModule()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
H A D | ProcessMinidump.cpp | 209 GetTarget().SetArchitecture(arch, true /*set_platform*/); in DoLoadCore() 541 info.SetArchitecture(GetArchitecture()); in GetProcessInfo()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | DynamicLoader.cpp | 282 target.SetArchitecture(module_sp->GetArchitecture()); in LoadBinaryWithUUIDAndAddress()
|
H A D | Module.cpp | 1489 bool Module::SetArchitecture(const ArchSpec &new_arch) { in SetArchitecture() function in Module 1587 return SetArchitecture(arch_spec); in MergeArchitecture() 1595 return SetArchitecture(merged_arch); in MergeArchitecture()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Module.h | 1067 bool SetArchitecture(const ArchSpec &new_arch);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/ |
H A D | ScriptedProcess.cpp | 411 info.SetArchitecture(GetArchitecture()); in GetLoadedDynamicLibrariesInfos()
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | Host.cpp | 443 launch_info.SetArchitecture(HostInfo::GetArchitecture()); in RunShellCommand()
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | ArchSpec.cpp | 537 SetArchitecture(arch_type, cpu, subtype); in ArchSpec() 779 if (!arch.SetArchitecture(eArchTypeMachO, cpu, sub)) in ParseMachCPUDashSubtypeTriple() 851 bool ArchSpec::SetArchitecture(ArchitectureType arch_type, uint32_t cpu, in SetArchitecture() function in ArchSpec
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ |
H A D | ProcessElfCore.cpp | 226 GetTarget().SetArchitecture(target_arch); in DoLoadCore() 1089 info.SetArchitecture(GetArchitecture()); in GetProcessInfo()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | ProcessGDBRemote.cpp | 340 GetTarget().SetArchitecture(host_arch); in ParsePythonTargetDefinition() 556 target.SetArchitecture(m_gdb_comm.GetProcessArchitecture()); in DoConnectRemote() 559 target.SetArchitecture(m_gdb_comm.GetHostArchitecture()); in DoConnectRemote() 594 GetTarget().SetArchitecture(m_gdb_comm.GetProcessArchitecture()); in DoConnectRemote() 596 GetTarget().SetArchitecture(m_gdb_comm.GetHostArchitecture()); in DoConnectRemote() 923 GetTarget().SetArchitecture(process_arch); in DidLaunchOrAttach() 945 GetTarget().SetArchitecture(new_target_arch); in DidLaunchOrAttach() 957 GetTarget().SetArchitecture(process_arch); in DidLaunchOrAttach()
|
H A D | GDBRemoteCommunicationClient.cpp | 1331 m_host_arch.SetArchitecture(eArchTypeMachO, cpu, sub); in GetHostInfo() 2077 process_info.GetArchitecture().SetArchitecture(eArchTypeMachO, cpu, in DecodeProcessInfoResponse() 2246 m_process_arch.SetArchitecture(eArchTypeMachO, cpu, sub); in GetCurrentProcessInfo() 2249 m_process_arch.SetArchitecture(eArchTypeELF, cpu, sub); in GetCurrentProcessInfo() 2252 m_process_arch.SetArchitecture(eArchTypeCOFF, cpu, sub); in GetCurrentProcessInfo()
|
H A D | GDBRemoteCommunicationServerCommon.cpp | 1008 m_process_launch_info.SetArchitecture( in Handle_QLaunchArch()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | ObjectFile.cpp | 300 return module_sp->SetArchitecture(new_arch); in SetModulesArchitecture()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | Target.h | 1057 bool SetArchitecture(const ArchSpec &arch_spec, bool set_platform = false,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
H A D | ObjectFileELF.cpp | 568 spec.GetArchitecture().SetArchitecture( in GetModuleSpecifications() 1399 arch_spec.SetArchitecture(eArchTypeELF, header.e_machine, sub_type, in GetSectionHeaderInfo()
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBTarget.cpp | 1550 target_sp->SetArchitecture(sb_module.GetSP()->GetArchitecture()); in AddModule()
|