Home
last modified time | relevance | path

Searched refs:ConnectRemote (Results 1 – 14 of 14) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp285 Status PlatformRemoteGDBServer::ConnectRemote(Args &args) { in ConnectRemote() function in PlatformRemoteGDBServer
503 error = process_sp->ConnectRemote(nullptr, connect_url.c_str()); in DebugProcess()
506 error = process_sp->ConnectRemote(nullptr, connect_url.c_str()); in DebugProcess()
588 error = process_sp->ConnectRemote(nullptr, connect_url.c_str()); in Attach()
H A DPlatformRemoteGDBServer.h110 Status ConnectRemote(Args &args) override;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBPlatform.h105 SBError ConnectRemote(SBPlatformConnectOptions &connect_options);
H A DSBTarget.h291 lldb::SBProcess ConnectRemote(SBListener &listener, const char *url,
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBPlatform.cpp255 SBError SBPlatform::ConnectRemote(SBPlatformConnectOptions &connect_options) { in ConnectRemote() function in SBPlatform
262 sb_error.ref() = platform_sp->ConnectRemote(args); in ConnectRemote()
H A DSBTarget.cpp537 lldb::SBProcess SBTarget::ConnectRemote(SBListener &listener, const char *url, in ConnectRemote() function in SBTarget
562 error.SetError(process_sp->ConnectRemote(NULL, url)); in ConnectRemote()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmdCmdTarget.cpp121 lldb::SBProcess process = target.ConnectRemote( in Execute()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.h158 lldb_private::Status ConnectRemote(lldb_private::Args &args) override;
H A DPlatformPOSIX.cpp722 Status PlatformPOSIX::ConnectRemote(Args &args) { in ConnectRemote() function in PlatformPOSIX
734 error = m_remote_platform_sp->ConnectRemote(args); in ConnectRemote()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DPlatform.h334 virtual Status ConnectRemote(Args &args);
H A DProcess.h936 virtual Status ConnectRemote(Stream *strm, llvm::StringRef remote_url);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DPlatform.cpp999 Status Platform::ConnectRemote(Args &args) { in ConnectRemote() function in Platform
1852 process_sp->ConnectRemote(debugger.GetOutputFile().get(), connect_url); in ConnectProcess()
H A DProcess.cpp3226 Status Process::ConnectRemote(Stream *strm, llvm::StringRef remote_url) { in ConnectRemote() function in Process
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectPlatform.cpp321 Status error(platform_sp->ConnectRemote(args)); in DoExecute()