Home
last modified time | relevance | path

Searched refs:process_arch (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp979 if (process_arch.IsValid()) { in DoLaunch()
980 GetTarget().MergeArchitecture(process_arch); in DoLaunch()
1104 process_arch = remote_process_arch; in DidLaunchOrAttach()
1109 process_arch.GetArchitectureName() in DidLaunchOrAttach()
1129 if (process_arch.IsValid()) { in DidLaunchOrAttach()
1154 GetTarget().SetArchitecture(process_arch); in DidLaunchOrAttach()
1199 GetTarget().SetArchitecture(process_arch); in DidLaunchOrAttach()
1213 ArchSpec process_arch; in DidLaunch() local
1214 DidLaunchOrAttach(process_arch); in DidLaunch()
1317 process_arch.Clear(); in DidAttach()
[all …]
H A DProcessGDBRemote.h104 void DidAttach(ArchSpec &process_arch) override;
402 void DidLaunchOrAttach(ArchSpec &process_arch);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp3114 ArchSpec process_arch; in CompleteAttach() local
3115 DidAttach(process_arch); in CompleteAttach()
3117 if (process_arch.IsValid()) { in CompleteAttach()
3118 GetTarget().SetArchitecture(process_arch); in CompleteAttach()
3120 const char *triple_str = process_arch.GetTriple().getTriple().c_str(); in CompleteAttach()
3148 } else if (!process_arch.IsValid()) { in CompleteAttach()
3151 const ArchSpec &process_arch = process_info.GetArchitecture(); in CompleteAttach() local
3152 if (process_arch.IsValid() && in CompleteAttach()
3153 !GetTarget().GetArchitecture().IsExactMatch(process_arch)) { in CompleteAttach()
3154 GetTarget().SetArchitecture(process_arch); in CompleteAttach()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/
H A DNativeProcessDarwin.cpp133 ArchSpec process_arch; in Attach() local
134 Status error = ResolveProcessArchitecture(pid, process_arch); in Attach()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcess.h1216 virtual void DidAttach(ArchSpec &process_arch) { process_arch.Clear(); } in DidAttach() argument