Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Target/
DProcessTrace.cpp64 void ProcessTrace::DidAttach(ArchSpec &process_arch) { in DidAttach() argument
78 Process::DidAttach(process_arch); in DidAttach()
DTraceSessionFileParser.cpp147 ArchSpec process_arch; in ParseProcess() local
148 process_sp->DidAttach(process_arch); in ParseProcess()
DProcess.cpp2987 ArchSpec process_arch; in CompleteAttach() local
2988 DidAttach(process_arch); in CompleteAttach()
2990 if (process_arch.IsValid()) { in CompleteAttach()
2991 GetTarget().SetArchitecture(process_arch); in CompleteAttach()
2993 const char *triple_str = process_arch.GetTriple().getTriple().c_str(); in CompleteAttach()
3022 } else if (!process_arch.IsValid()) { in CompleteAttach()
3025 const ArchSpec &process_arch = process_info.GetArchitecture(); in CompleteAttach() local
3026 if (process_arch.IsValid() && in CompleteAttach()
3027 !GetTarget().GetArchitecture().IsExactMatch(process_arch)) { in CompleteAttach()
3028 GetTarget().SetArchitecture(process_arch); in CompleteAttach()
[all …]
/external/llvm-project/lldb/include/lldb/Target/
DProcessTrace.h35 void DidAttach(ArchSpec &process_arch) override;
DProcess.h994 virtual void DidAttach(ArchSpec &process_arch) { process_arch.Clear(); } in DidAttach() argument
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp909 const ArchSpec &process_arch = m_gdb_comm.GetProcessArchitecture(); in DoLaunch() local
911 if (process_arch.IsValid()) { in DoLaunch()
912 GetTarget().MergeArchitecture(process_arch); in DoLaunch()
1019 void ProcessGDBRemote::DidLaunchOrAttach(ArchSpec &process_arch) { in DidLaunchOrAttach() argument
1028 process_arch = remote_process_arch; in DidLaunchOrAttach()
1030 process_arch.GetArchitectureName(), in DidLaunchOrAttach()
1031 process_arch.GetTriple().getTriple()); in DidLaunchOrAttach()
1033 process_arch = m_gdb_comm.GetHostArchitecture(); in DidLaunchOrAttach()
1037 process_arch.GetArchitectureName(), in DidLaunchOrAttach()
1038 process_arch.GetTriple().getTriple()); in DidLaunchOrAttach()
[all …]
DProcessGDBRemote.h100 void DidAttach(ArchSpec &process_arch) override;
382 void DidLaunchOrAttach(ArchSpec &process_arch);
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/
DProcessKDP.cpp398 void ProcessKDP::DidAttach(ArchSpec &process_arch) { in DidAttach() argument
399 Process::DidAttach(process_arch); in DidAttach()
404 GetHostArchitecture(process_arch); in DidAttach()
DProcessKDP.h81 void DidAttach(lldb_private::ArchSpec &process_arch) override;