Home
last modified time | relevance | path

Searched refs:PlatformSP (Results 1 – 25 of 42) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBPlatform.cpp224 PlatformSP platform_sp(GetSP()); in GetName()
237 PlatformSP platform_sp(GetSP()); in GetWorkingDirectory()
244 PlatformSP platform_sp(GetSP()); in SetWorkingDirectory()
257 PlatformSP platform_sp(GetSP()); in ConnectRemote()
270 PlatformSP platform_sp(GetSP()); in DisconnectRemote()
276 PlatformSP platform_sp(GetSP()); in IsConnected()
283 PlatformSP platform_sp(GetSP()); in GetTriple()
296 PlatformSP platform_sp(GetSP()); in GetOSBuild()
311 PlatformSP platform_sp(GetSP()); in GetOSDescription()
326 PlatformSP platform_sp(GetSP()); in GetHostname()
[all …]
H A DSBUnixSignals.cpp30 SBUnixSignals::SBUnixSignals(PlatformSP &platform_sp) in SBUnixSignals()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBPlatform.h154 lldb::PlatformSP GetSP() const;
156 void SetSP(const lldb::PlatformSP &platform_sp);
159 const std::function<lldb_private::Status(const lldb::PlatformSP &)>
162 lldb::PlatformSP m_opaque_sp;
H A DSBUnixSignals.h58 SBUnixSignals(lldb::PlatformSP &platform_sp);
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DPlatform.h97 static lldb::PlatformSP GetHostPlatform();
99 static lldb::PlatformSP
104 static void SetHostPlatform(const lldb::PlatformSP &platform_sp);
107 static lldb::PlatformSP Find(const ConstString &name);
111 static lldb::PlatformSP Create(const ArchSpec &arch,
1065 lldb::PlatformSP GetAtIndex(uint32_t idx) { in GetAtIndex()
1066 lldb::PlatformSP platform_sp; in GetAtIndex()
1083 lldb::PlatformSP GetSelectedPlatform() { in GetSelectedPlatform()
1091 void SetSelectedPlatform(const lldb::PlatformSP &platform_sp) { in SetSelectedPlatform()
1107 typedef std::vector<lldb::PlatformSP> collection;
[all …]
H A DTargetList.h105 lldb::PlatformSP &platform_sp, lldb::TargetSP &target_sp);
225 lldb::PlatformSP &platform_sp,
H A DTarget.h1212 lldb::PlatformSP GetPlatform() { return m_platform_sp; } in GetPlatform()
1214 void SetPlatform(const lldb::PlatformSP &platform_sp) { in SetPlatform()
1272 lldb::PlatformSP m_platform_sp; ///< The platform for this target.
1347 const lldb::PlatformSP &platform_sp, bool is_dummy_target);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/
H A DPlatformOpenBSD.cpp42 PlatformSP PlatformOpenBSD::CreateInstance(bool force, const ArchSpec *arch) { in CreateInstance()
69 return PlatformSP(new PlatformOpenBSD(false)); in CreateInstance()
71 return PlatformSP(); in CreateInstance()
100 PlatformSP default_platform_sp(new PlatformOpenBSD(true)); in Initialize()
H A DPlatformOpenBSD.h31 static lldb::PlatformSP CreateInstance(bool force, const ArchSpec *arch);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectPlatform.cpp282 PlatformSP platform_sp; in DoExecute()
318 PlatformSP platform_sp( in DoExecute()
344 PlatformSP platform_sp( in GetOptions()
370 PlatformSP platform_sp( in DoExecute()
439 PlatformSP platform_sp( in DoExecute()
477 PlatformSP platform_sp( in DoExecute()
528 PlatformSP platform_sp( in DoExecute()
584 PlatformSP platform_sp( in DoExecute()
630 PlatformSP platform_sp( in DoExecute()
725 PlatformSP platform_sp( in DoExecute()
[all …]
H A DCommandObjectProcess.cpp396 PlatformSP platform_sp(interpreter.GetPlatform(true)); in HandleOptionArgumentCompletion()
437 PlatformSP platform_sp( in DoExecute()
904 PlatformSP platform_sp = m_interpreter.GetPlatform(true); in DoExecute()
1017 PlatformSP platform = process->GetTarget().GetPlatform(); in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionGroupPlatform.cpp19 PlatformSP OptionGroupPlatform::CreatePlatformWithOptions( in CreatePlatformWithOptions()
22 PlatformSP platform_sp; in CreatePlatformWithOptions()
124 const lldb::PlatformSP &platform_sp) const { in PlatformMatches()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp44 PlatformSP PlatformFreeBSD::CreateInstance(bool force, const ArchSpec *arch) { in CreateInstance()
71 return PlatformSP(new PlatformFreeBSD(false)); in CreateInstance()
73 return PlatformSP(); in CreateInstance()
102 PlatformSP default_platform_sp(new PlatformFreeBSD(true)); in Initialize()
H A DPlatformFreeBSD.h31 static lldb::PlatformSP CreateInstance(bool force, const ArchSpec *arch);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp42 PlatformSP PlatformNetBSD::CreateInstance(bool force, const ArchSpec *arch) { in CreateInstance()
63 return PlatformSP(new PlatformNetBSD(false)); in CreateInstance()
65 return PlatformSP(); in CreateInstance()
94 PlatformSP default_platform_sp(new PlatformNetBSD(true)); in Initialize()
H A DPlatformNetBSD.h31 static lldb::PlatformSP CreateInstance(bool force, const ArchSpec *arch);
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionGroupPlatform.h40 lldb::PlatformSP CreatePlatformWithOptions(CommandInterpreter &interpreter,
64 bool PlatformMatches(const lldb::PlatformSP &platform_sp) const;
H A DOptions.h138 lldb::PlatformSP platform_sp,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DTargetList.cpp71 PlatformSP &platform_sp, TargetSP &target_sp) { in CreateTarget()
83 PlatformSP platform_sp; in CreateTargetInternal()
180 typedef std::vector<PlatformSP> PlatformList; in CreateTargetInternal()
182 PlatformSP host_platform_sp = Platform::GetHostPlatform(); in CreateTargetInternal()
210 PlatformSP fallback_platform_sp( in CreateTargetInternal()
314 PlatformSP host_platform_sp(Platform::GetHostPlatform()); in CreateDummyTarget()
324 lldb::PlatformSP &platform_sp, in CreateTargetInternal()
H A DPlatform.cpp57 static PlatformSP &GetHostPlatformSP() { in GetHostPlatformSP()
58 static PlatformSP g_platform_sp; in GetHostPlatformSP()
132 static std::vector<PlatformSP> &GetPlatformList() { in GetPlatformList()
133 static std::vector<PlatformSP> g_platform_list; in GetPlatformList()
158 void Platform::SetHostPlatform(const lldb::PlatformSP &platform_sp) { in SetHostPlatform()
270 PlatformSP Platform::Find(const ConstString &name) { in Find()
282 return PlatformSP(); in Find()
287 lldb::PlatformSP platform_sp; in Create()
314 lldb::PlatformSP platform_sp; in Create()
1219 lldb::PlatformSP
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-private-interfaces.h64 typedef lldb::PlatformSP (*PlatformCreateInstance)(bool force,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp61 PlatformSP PlatformRemoteGDBServer::CreateInstance(bool force, in CreateInstance()
68 return PlatformSP(new PlatformRemoteGDBServer()); in CreateInstance()
69 return PlatformSP(); in CreateInstance()
H A DPlatformRemoteGDBServer.h29 static lldb::PlatformSP CreateInstance(bool force, const ArchSpec *arch);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.cpp307 PlatformSP platform_sp(GetTarget().GetPlatform()); in DoAttachToProcessWithID()
504 PlatformSP platform_sp(target->GetPlatform()); in DoDidExec()
887 PlatformSP platform_sp = GetTarget().GetPlatform(); in GetAuxvData()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DExpressionSourceCode.cpp192 if (lldb::PlatformSP platform_sp = target->GetPlatform()) { in GetText()

12