Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
HDSBPlatform.cpp333 SBError SBPlatform::ConnectRemote(SBPlatformConnectOptions &connect_options) { in ConnectRemote() function in SBPlatform
334 LLDB_RECORD_METHOD(lldb::SBError, SBPlatform, ConnectRemote, in ConnectRemote()
343 sb_error.ref() = platform_sp->ConnectRemote(args); in ConnectRemote()
675 LLDB_REGISTER_METHOD(lldb::SBError, SBPlatform, ConnectRemote, in RegisterMethods()
HDSBTarget.cpp536 lldb::SBProcess SBTarget::ConnectRemote(SBListener &listener, const char *url, in ConnectRemote() function in SBTarget
540 lldb::SBProcess, SBTarget, ConnectRemote, in ConnectRemote()
559 error.SetError(process_sp->ConnectRemote(nullptr, url)); in ConnectRemote()
2438 lldb::SBProcess, SBTarget, ConnectRemote, in RegisterMethods()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
HDPlatformRemoteGDBServer.cpp282 Status PlatformRemoteGDBServer::ConnectRemote(Args &args) { in ConnectRemote() function in PlatformRemoteGDBServer
489 error = process_sp->ConnectRemote(nullptr, connect_url.c_str()); in DebugProcess()
492 error = process_sp->ConnectRemote(nullptr, connect_url.c_str()); in DebugProcess()
575 error = process_sp->ConnectRemote(nullptr, connect_url.c_str()); in Attach()
HDPlatformRemoteGDBServer.h103 Status ConnectRemote(Args &args) override;
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
HDSBPlatform.i136 ConnectRemote (lldb::SBPlatformConnectOptions &connect_options);
HDSBTarget.i342 A process object for the connected process.") ConnectRemote;
344 ConnectRemote (SBListener &listener,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
HDSBPlatform.h106 SBError ConnectRemote(SBPlatformConnectOptions &connect_options);
HDSBTarget.h264 lldb::SBProcess ConnectRemote(SBListener &listener, const char *url,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
HDPlatformPOSIX.h65 lldb_private::Status ConnectRemote(lldb_private::Args &args) override;
HDPlatformPOSIX.cpp443 Status PlatformPOSIX::ConnectRemote(Args &args) { in ConnectRemote() function in PlatformPOSIX
455 error = m_remote_platform_sp->ConnectRemote(args); in ConnectRemote()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
HDPlatform.h309 virtual Status ConnectRemote(Args &args);
HDProcess.h726 virtual Status ConnectRemote(Stream *strm, llvm::StringRef remote_url);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
HDPlatform.cpp960 Status Platform::ConnectRemote(Args &args) { in ConnectRemote() function in Platform
1799 error = process_sp->ConnectRemote(&debugger.GetOutputStream(), connect_url); in ConnectProcess()
HDProcess.cpp2993 Status Process::ConnectRemote(Stream *strm, llvm::StringRef remote_url) { in ConnectRemote() function in Process
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
HDCommandObjectPlatform.cpp292 Status error(platform_sp->ConnectRemote(args)); in DoExecute()