Lines Matching refs:SBPlatformShellCommand

163 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_interpreter,  in SBPlatformShellCommand()  function in SBPlatformShellCommand
169 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_command) in SBPlatformShellCommand() function in SBPlatformShellCommand
174 SBPlatformShellCommand::SBPlatformShellCommand( in SBPlatformShellCommand() function in SBPlatformShellCommand
175 const SBPlatformShellCommand &rhs) in SBPlatformShellCommand()
182 SBPlatformShellCommand &
183 SBPlatformShellCommand::operator=(const SBPlatformShellCommand &rhs) { in operator =()
191 SBPlatformShellCommand::~SBPlatformShellCommand() { delete m_opaque_ptr; } in ~SBPlatformShellCommand()
193 void SBPlatformShellCommand::Clear() { in Clear()
201 const char *SBPlatformShellCommand::GetShell() { in GetShell()
209 void SBPlatformShellCommand::SetShell(const char *shell_interpreter) { in SetShell()
218 const char *SBPlatformShellCommand::GetCommand() { in GetCommand()
226 void SBPlatformShellCommand::SetCommand(const char *shell_command) { in SetCommand()
235 const char *SBPlatformShellCommand::GetWorkingDirectory() { in GetWorkingDirectory()
243 void SBPlatformShellCommand::SetWorkingDirectory(const char *path) { in SetWorkingDirectory()
252 uint32_t SBPlatformShellCommand::GetTimeoutSeconds() { in GetTimeoutSeconds()
260 void SBPlatformShellCommand::SetTimeoutSeconds(uint32_t sec) { in SetTimeoutSeconds()
269 int SBPlatformShellCommand::GetSignal() { in GetSignal()
275 int SBPlatformShellCommand::GetStatus() { in GetStatus()
281 const char *SBPlatformShellCommand::GetOutput() { in GetOutput()
542 SBError SBPlatform::Run(SBPlatformShellCommand &shell_command) { in Run()