diff options
Diffstat (limited to 'lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.h')
-rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.h | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.h b/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.h index 5c0f075b41c..36f4c004597 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.h +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.h @@ -85,7 +85,9 @@ namespace lldb_private { GetStatus (Stream &strm); virtual Error - GetFile (const FileSpec &platform_file, FileSpec &local_file); + GetFile (const FileSpec &platform_file, + const UUID *uuid_ptr, + FileSpec &local_file); virtual uint32_t FindProcessesByName (const char *name_match, @@ -102,6 +104,19 @@ namespace lldb_private { GetSoftwareBreakpointTrapOpcode (Target &target, BreakpointSite *bp_site); + virtual bool + FetchRemoteOSVersion (); + + virtual Error + ConnectRemote (Args& args); + + virtual Error + DisconnectRemote (); + + virtual const char * + GetRemoteInstanceName (); + + protected: std::string m_device_support_directory; std::string m_device_support_directory_for_os_version; @@ -120,4 +135,4 @@ namespace lldb_private { }; } // namespace lldb_private -#endif // liblldb_Platform_h_ +#endif // liblldb_PlatformRemoteiOS_h_ |