Lines Matching refs:SBPlatformShellCommand
167 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_interpreter, in SBPlatformShellCommand() function in SBPlatformShellCommand
173 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_command) in SBPlatformShellCommand() function in SBPlatformShellCommand
178 SBPlatformShellCommand::SBPlatformShellCommand( in SBPlatformShellCommand() function in SBPlatformShellCommand
179 const SBPlatformShellCommand &rhs) in SBPlatformShellCommand()
186 SBPlatformShellCommand &
187 SBPlatformShellCommand::operator=(const SBPlatformShellCommand &rhs) { in operator =()
195 SBPlatformShellCommand::~SBPlatformShellCommand() { delete m_opaque_ptr; } in ~SBPlatformShellCommand()
197 void SBPlatformShellCommand::Clear() { in Clear()
205 const char *SBPlatformShellCommand::GetShell() { in GetShell()
213 void SBPlatformShellCommand::SetShell(const char *shell_interpreter) { in SetShell()
222 const char *SBPlatformShellCommand::GetCommand() { in GetCommand()
230 void SBPlatformShellCommand::SetCommand(const char *shell_command) { in SetCommand()
239 const char *SBPlatformShellCommand::GetWorkingDirectory() { in GetWorkingDirectory()
247 void SBPlatformShellCommand::SetWorkingDirectory(const char *path) { in SetWorkingDirectory()
256 uint32_t SBPlatformShellCommand::GetTimeoutSeconds() { in GetTimeoutSeconds()
264 void SBPlatformShellCommand::SetTimeoutSeconds(uint32_t sec) { in SetTimeoutSeconds()
273 int SBPlatformShellCommand::GetSignal() { in GetSignal()
279 int SBPlatformShellCommand::GetStatus() { in GetStatus()
285 const char *SBPlatformShellCommand::GetOutput() { in GetOutput()
546 SBError SBPlatform::Run(SBPlatformShellCommand &shell_command) { in Run()