Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp344 PlatformSP platform_sp(GetSP()); in GetName()
350 lldb::PlatformSP SBPlatform::GetSP() const { return m_opaque_sp; } in SetSP()
352 void SBPlatform::SetSP(const lldb::PlatformSP &platform_sp) {
359 PlatformSP platform_sp(GetSP()); in GetWorkingDirectory()
368 PlatformSP platform_sp(GetSP()); in SetWorkingDirectory()
383 PlatformSP platform_sp(GetSP()); in ConnectRemote()
397 PlatformSP platform_sp(GetSP()); in DisconnectRemote()
405 PlatformSP platform_sp(GetSP()); in IsConnected()
414 PlatformSP platform_sp(GetSP()); in GetTriple()
429 PlatformSP platform_s in GetOSBuild()
[all...]
H A DSBUnixSignals.cpp30 SBUnixSignals::SBUnixSignals(PlatformSP &platform_sp) in SBUnixSignals()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DPlatform.h98 static lldb::PlatformSP GetHostPlatform();
102 static void SetHostPlatform(const lldb::PlatformSP &platform_sp);
104 static lldb::PlatformSP Create(llvm::StringRef name);
1012 void Append(const lldb::PlatformSP &platform_sp, bool set_selected) { in Append()
1024 lldb::PlatformSP GetAtIndex(uint32_t idx) { in GetAtIndex()
1025 lldb::PlatformSP platform_sp; in GetAtIndex()
1040 lldb::PlatformSP GetSelectedPlatform() { in GetSelectedPlatform()
1048 void SetSelectedPlatform(const lldb::PlatformSP &platform_sp) { in SetSelectedPlatform()
1063 lldb::PlatformSP GetOrCreate(llvm::StringRef name);
1064 lldb::PlatformSP GetOrCreate(const ArchSpec &arch,
[all …]
H A DTargetList.h100 lldb::PlatformSP &platform_sp, lldb::TargetSP &target_sp);
213 lldb::PlatformSP &platform_sp,
H A DRemoteAwarePlatform.h106 lldb::PlatformSP m_remote_platform_sp;
H A DTarget.h1444 lldb::PlatformSP GetPlatform() { return m_platform_sp; } in GetPlatform()
1446 void SetPlatform(const lldb::PlatformSP &platform_sp) { in SetPlatform()
1542 lldb::PlatformSP m_platform_sp; ///< The platform for this target.
1629 const lldb::PlatformSP &platform_sp, bool is_dummy_target);
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp179 PlatformSP platform_sp(m_platform_options.CreatePlatformWithOptions( in DoExecute()
217 PlatformSP host_platform_sp(Platform::GetHostPlatform()); in DoExecute()
254 PlatformSP platform_sp; in DoExecute()
287 PlatformSP platform_sp( in DoExecute()
308 PlatformSP platform_sp( in GetOptions()
332 PlatformSP platform_sp( in DoExecute()
391 PlatformSP platform_sp( in DoExecute()
425 PlatformSP platform_sp( in DoExecute()
473 PlatformSP platform_sp( in DoExecute()
526 PlatformSP platform_sp( in DoExecute()
[all …]
H A DCommandOptionsProcessLaunch.cpp96 PlatformSP platform_sp = in SetOptionValue()
97 target_sp ? target_sp->GetPlatform() : PlatformSP(); in SetOptionValue()
H A DCommandCompletions.cpp521 lldb::PlatformSP platform_sp = in RemoteDiskFiles()
530 lldb::PlatformSP platform_sp = in RemoteDiskDirectories()
707 lldb::PlatformSP platform_sp(interpreter.GetPlatform(true)); in ProcessIDs()
721 lldb::PlatformSP platform_sp(interpreter.GetPlatform(true)); in ProcessNames()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBPlatform.h197 lldb::PlatformSP GetSP() const;
199 void SetSP(const lldb::PlatformSP &platform_sp);
202 const std::function<lldb_private::Status(const lldb::PlatformSP &)>
205 lldb::PlatformSP m_opaque_sp;
H A DSBUnixSignals.h59 SBUnixSignals(lldb::PlatformSP &platform_sp);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/
H A DPlatformOpenBSD.cpp43 PlatformSP PlatformOpenBSD::CreateInstance(bool force, const ArchSpec *arch) { in CreateInstance()
70 return PlatformSP(new PlatformOpenBSD(false)); in CreateInstance()
72 return PlatformSP(); in CreateInstance()
86 PlatformSP default_platform_sp(new PlatformOpenBSD(true)); in Initialize()
H A DPlatformOpenBSD.h26 static lldb::PlatformSP CreateInstance(bool force, const ArchSpec *arch);
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupPlatform.cpp18 PlatformSP OptionGroupPlatform::CreatePlatformWithOptions( in CreatePlatformWithOptions()
23 PlatformSP platform_sp; in CreatePlatformWithOptions()
130 const lldb::PlatformSP &platform_sp) const { in PlatformMatches()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp48 PlatformSP PlatformFreeBSD::CreateInstance(bool force, const ArchSpec *arch) { in CreateInstance()
75 return PlatformSP(new PlatformFreeBSD(false)); in CreateInstance()
77 return PlatformSP(); in CreateInstance()
91 PlatformSP default_platform_sp(new PlatformFreeBSD(true)); in Initialize()
H A DPlatformFreeBSD.h27 static lldb::PlatformSP CreateInstance(bool force, const ArchSpec *arch);
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupPlatform.h36 lldb::PlatformSP CreatePlatformWithOptions(CommandInterpreter &interpreter,
62 bool PlatformMatches(const lldb::PlatformSP &platform_sp) const;
H A DOptions.h127 lldb::PlatformSP platform_sp,
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp56 static PlatformSP &GetHostPlatformSP() { in GetHostPlatformSP()
57 static PlatformSP g_platform_sp; in GetHostPlatformSP()
134 PlatformSP Platform::GetHostPlatform() { return GetHostPlatformSP(); } in GetHostPlatform()
145 void Platform::SetHostPlatform(const lldb::PlatformSP &platform_sp) { in SetHostPlatform()
216 PlatformSP Platform::Create(llvm::StringRef name) { in Create()
217 lldb::PlatformSP platform_sp; in Create()
2094 PlatformSP PlatformList::GetOrCreate(llvm::StringRef name) { in GetOrCreate()
2096 for (const PlatformSP &platform_sp : m_platforms) { in GetOrCreate()
2103 PlatformSP PlatformList::GetOrCreate(const ArchSpec &arch, in GetOrCreate()
2129 PlatformSP platform_sp = create_callback(false, &arch); in GetOrCreate()
[all …]
H A DTargetList.cpp65 PlatformSP &platform_sp, TargetSP &target_sp) { in CreateTarget()
84 PlatformSP platform_sp = platform_list.GetSelectedPlatform(); in CreateTargetInternal()
183 std::vector<PlatformSP> candidates; in CreateTargetInternal()
187 if (PlatformSP platform_for_archs_sp = in CreateTargetInternal()
250 lldb::PlatformSP &platform_sp, in CreateTargetInternal()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp43 PlatformSP PlatformNetBSD::CreateInstance(bool force, const ArchSpec *arch) { in CreateInstance()
64 return PlatformSP(new PlatformNetBSD(false)); in CreateInstance()
66 return PlatformSP(); in CreateInstance()
80 PlatformSP default_platform_sp(new PlatformNetBSD(true)); in Initialize()
H A DPlatformNetBSD.h27 static lldb::PlatformSP CreateInstance(bool force, const ArchSpec *arch);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/
H A DPlatformQemuUser.cpp101 PlatformSP PlatformQemuUser::CreateInstance(bool force, const ArchSpec *arch) { in CreateInstance()
103 return PlatformSP(new PlatformQemuUser()); in CreateInstance()
H A DPlatformQemuUser.h73 static lldb::PlatformSP CreateInstance(bool force, const ArchSpec *arch);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp73 PlatformSP PlatformRemoteGDBServer::CreateInstance(bool force, in CreateInstance()
80 return PlatformSP(new PlatformRemoteGDBServer()); in CreateInstance()
81 return PlatformSP(); in CreateInstance()

12