32 lines · plain
1%feature("docstring",2"Describes how :py:class:`SBPlatform.ConnectRemote` connects to a remote platform."3) lldb::SBPlatformConnectOptions;4 5%feature("docstring",6"Represents a shell command that can be run by :py:class:`SBPlatform.Run`."7) lldb::SBPlatformShellCommand;8 9%feature("docstring",10"A class that represents a platform that can represent the current host or a remote host debug platform.11 12The SBPlatform class represents the current host, or a remote host.13It can be connected to a remote platform in order to provide ways14to remotely launch and attach to processes, upload/download files,15create directories, run remote shell commands, find locally cached16versions of files from the remote system, and much more.17 18SBPlatform objects can be created and then used to connect to a remote19platform which allows the SBPlatform to be used to get a list of the20current processes on the remote host, attach to one of those processes,21install programs on the remote system, attach and launch processes,22and much more.23 24Every :py:class:`SBTarget` has a corresponding SBPlatform. The platform can be25specified upon target creation, or the currently selected platform26will attempt to be used when creating the target automatically as long27as the currently selected platform matches the target architecture28and executable type. If the architecture or executable type do not match,29a suitable platform will be found automatically."30 31) lldb::SBPlatform;32