Lines Matching refs:SBPlatformShellCommand
177 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_interpreter, in SBPlatformShellCommand() function in SBPlatformShellCommand
180 LLDB_RECORD_CONSTRUCTOR(SBPlatformShellCommand, (const char *, const char *), in SBPlatformShellCommand()
184 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_command) in SBPlatformShellCommand() function in SBPlatformShellCommand
186 LLDB_RECORD_CONSTRUCTOR(SBPlatformShellCommand, (const char *), in SBPlatformShellCommand()
190 SBPlatformShellCommand::SBPlatformShellCommand( in SBPlatformShellCommand() function in SBPlatformShellCommand
191 const SBPlatformShellCommand &rhs) in SBPlatformShellCommand()
193 LLDB_RECORD_CONSTRUCTOR(SBPlatformShellCommand, in SBPlatformShellCommand()
194 (const lldb::SBPlatformShellCommand &), rhs); in SBPlatformShellCommand()
199 SBPlatformShellCommand &
200 SBPlatformShellCommand::operator=(const SBPlatformShellCommand &rhs) { in operator =()
203 SBPlatformShellCommand &, in operator =()
204 SBPlatformShellCommand, operator=,(const lldb::SBPlatformShellCommand &), in operator =()
211 SBPlatformShellCommand::~SBPlatformShellCommand() { delete m_opaque_ptr; } in ~SBPlatformShellCommand()
213 void SBPlatformShellCommand::Clear() { in Clear()
214 LLDB_RECORD_METHOD_NO_ARGS(void, SBPlatformShellCommand, Clear); in Clear()
221 const char *SBPlatformShellCommand::GetShell() { in GetShell()
222 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBPlatformShellCommand, GetShell); in GetShell()
229 void SBPlatformShellCommand::SetShell(const char *shell_interpreter) { in SetShell()
230 LLDB_RECORD_METHOD(void, SBPlatformShellCommand, SetShell, (const char *), in SetShell()
239 const char *SBPlatformShellCommand::GetCommand() { in GetCommand()
240 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBPlatformShellCommand, GetCommand); in GetCommand()
247 void SBPlatformShellCommand::SetCommand(const char *shell_command) { in SetCommand()
248 LLDB_RECORD_METHOD(void, SBPlatformShellCommand, SetCommand, (const char *), in SetCommand()
257 const char *SBPlatformShellCommand::GetWorkingDirectory() { in GetWorkingDirectory()
258 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBPlatformShellCommand, in GetWorkingDirectory()
266 void SBPlatformShellCommand::SetWorkingDirectory(const char *path) { in SetWorkingDirectory()
267 LLDB_RECORD_METHOD(void, SBPlatformShellCommand, SetWorkingDirectory, in SetWorkingDirectory()
276 uint32_t SBPlatformShellCommand::GetTimeoutSeconds() { in GetTimeoutSeconds()
277 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBPlatformShellCommand, in GetTimeoutSeconds()
285 void SBPlatformShellCommand::SetTimeoutSeconds(uint32_t sec) { in SetTimeoutSeconds()
286 LLDB_RECORD_METHOD(void, SBPlatformShellCommand, SetTimeoutSeconds, in SetTimeoutSeconds()
295 int SBPlatformShellCommand::GetSignal() { in GetSignal()
296 LLDB_RECORD_METHOD_NO_ARGS(int, SBPlatformShellCommand, GetSignal); in GetSignal()
301 int SBPlatformShellCommand::GetStatus() { in GetStatus()
302 LLDB_RECORD_METHOD_NO_ARGS(int, SBPlatformShellCommand, GetStatus); in GetStatus()
307 const char *SBPlatformShellCommand::GetOutput() { in GetOutput()
308 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBPlatformShellCommand, GetOutput); in GetOutput()
580 SBError SBPlatform::Run(SBPlatformShellCommand &shell_command) { in Run()
582 (lldb::SBPlatformShellCommand &), shell_command); in Run()
727 template <> void RegisterMethods<SBPlatformShellCommand>(Registry &R) { in RegisterMethods()
728 LLDB_REGISTER_CONSTRUCTOR(SBPlatformShellCommand, (const char *)); in RegisterMethods()
729 LLDB_REGISTER_CONSTRUCTOR(SBPlatformShellCommand, in RegisterMethods()
730 (const lldb::SBPlatformShellCommand &)); in RegisterMethods()
732 SBPlatformShellCommand &, in RegisterMethods()
733 SBPlatformShellCommand, operator=,(const lldb::SBPlatformShellCommand &)); in RegisterMethods()
734 LLDB_REGISTER_METHOD(void, SBPlatformShellCommand, Clear, ()); in RegisterMethods()
735 LLDB_REGISTER_METHOD(const char *, SBPlatformShellCommand, GetShell, ()); in RegisterMethods()
736 LLDB_REGISTER_METHOD(void, SBPlatformShellCommand, SetShell, (const char *)); in RegisterMethods()
737 LLDB_REGISTER_METHOD(const char *, SBPlatformShellCommand, GetCommand, ()); in RegisterMethods()
738 LLDB_REGISTER_METHOD(void, SBPlatformShellCommand, SetCommand, in RegisterMethods()
740 LLDB_REGISTER_METHOD(const char *, SBPlatformShellCommand, in RegisterMethods()
742 LLDB_REGISTER_METHOD(void, SBPlatformShellCommand, SetWorkingDirectory, in RegisterMethods()
744 LLDB_REGISTER_METHOD(uint32_t, SBPlatformShellCommand, GetTimeoutSeconds, ()); in RegisterMethods()
745 LLDB_REGISTER_METHOD(void, SBPlatformShellCommand, SetTimeoutSeconds, in RegisterMethods()
747 LLDB_REGISTER_METHOD(int, SBPlatformShellCommand, GetSignal, ()); in RegisterMethods()
748 LLDB_REGISTER_METHOD(int, SBPlatformShellCommand, GetStatus, ()); in RegisterMethods()
749 LLDB_REGISTER_METHOD(const char *, SBPlatformShellCommand, GetOutput, ()); in RegisterMethods()
756 LLDB_REGISTER_CONSTRUCTOR(SBPlatformShellCommand, in RegisterMethods()
784 (lldb::SBPlatformShellCommand &)); in RegisterMethods()