Lines Matching refs:SBPlatformConnectOptions
80 SBPlatformConnectOptions::SBPlatformConnectOptions(const char *url) in SBPlatformConnectOptions() function in SBPlatformConnectOptions
82 LLDB_RECORD_CONSTRUCTOR(SBPlatformConnectOptions, (const char *), url); in SBPlatformConnectOptions()
85 SBPlatformConnectOptions::SBPlatformConnectOptions( in SBPlatformConnectOptions() function in SBPlatformConnectOptions
86 const SBPlatformConnectOptions &rhs) in SBPlatformConnectOptions()
88 LLDB_RECORD_CONSTRUCTOR(SBPlatformConnectOptions, in SBPlatformConnectOptions()
89 (const lldb::SBPlatformConnectOptions &), rhs); in SBPlatformConnectOptions()
94 SBPlatformConnectOptions::~SBPlatformConnectOptions() { delete m_opaque_ptr; } in ~SBPlatformConnectOptions()
96 SBPlatformConnectOptions &
97 SBPlatformConnectOptions::operator=(const SBPlatformConnectOptions &rhs) { in operator =()
99 SBPlatformConnectOptions &, in operator =()
100 SBPlatformConnectOptions, operator=,( in operator =()
101 const lldb::SBPlatformConnectOptions &), in operator =()
108 const char *SBPlatformConnectOptions::GetURL() { in GetURL()
109 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBPlatformConnectOptions, GetURL); in GetURL()
116 void SBPlatformConnectOptions::SetURL(const char *url) { in SetURL()
117 LLDB_RECORD_METHOD(void, SBPlatformConnectOptions, SetURL, (const char *), in SetURL()
126 bool SBPlatformConnectOptions::GetRsyncEnabled() { in GetRsyncEnabled()
127 LLDB_RECORD_METHOD_NO_ARGS(bool, SBPlatformConnectOptions, GetRsyncEnabled); in GetRsyncEnabled()
132 void SBPlatformConnectOptions::EnableRsync( in EnableRsync()
135 LLDB_RECORD_METHOD(void, SBPlatformConnectOptions, EnableRsync, in EnableRsync()
153 void SBPlatformConnectOptions::DisableRsync() { in DisableRsync()
154 LLDB_RECORD_METHOD_NO_ARGS(void, SBPlatformConnectOptions, DisableRsync); in DisableRsync()
159 const char *SBPlatformConnectOptions::GetLocalCacheDirectory() { in GetLocalCacheDirectory()
160 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBPlatformConnectOptions, in GetLocalCacheDirectory()
166 void SBPlatformConnectOptions::SetLocalCacheDirectory(const char *path) { in SetLocalCacheDirectory()
167 LLDB_RECORD_METHOD(void, SBPlatformConnectOptions, SetLocalCacheDirectory, in SetLocalCacheDirectory()
408 SBError SBPlatform::ConnectRemote(SBPlatformConnectOptions &connect_options) { in ConnectRemote()
410 (lldb::SBPlatformConnectOptions &), connect_options); in ConnectRemote()
707 template <> void RegisterMethods<SBPlatformConnectOptions>(Registry &R) { in RegisterMethods()
708 LLDB_REGISTER_CONSTRUCTOR(SBPlatformConnectOptions, (const char *)); in RegisterMethods()
709 LLDB_REGISTER_CONSTRUCTOR(SBPlatformConnectOptions, in RegisterMethods()
710 (const lldb::SBPlatformConnectOptions &)); in RegisterMethods()
712 SBPlatformConnectOptions &, in RegisterMethods()
713 SBPlatformConnectOptions, operator=,( in RegisterMethods()
714 const lldb::SBPlatformConnectOptions &)); in RegisterMethods()
715 LLDB_REGISTER_METHOD(const char *, SBPlatformConnectOptions, GetURL, ()); in RegisterMethods()
716 LLDB_REGISTER_METHOD(void, SBPlatformConnectOptions, SetURL, (const char *)); in RegisterMethods()
717 LLDB_REGISTER_METHOD(bool, SBPlatformConnectOptions, GetRsyncEnabled, ()); in RegisterMethods()
718 LLDB_REGISTER_METHOD(void, SBPlatformConnectOptions, EnableRsync, in RegisterMethods()
720 LLDB_REGISTER_METHOD(void, SBPlatformConnectOptions, DisableRsync, ()); in RegisterMethods()
721 LLDB_REGISTER_METHOD(const char *, SBPlatformConnectOptions, in RegisterMethods()
723 LLDB_REGISTER_METHOD(void, SBPlatformConnectOptions, SetLocalCacheDirectory, in RegisterMethods()
767 (lldb::SBPlatformConnectOptions &)); in RegisterMethods()