Lines Matching refs:SBPlatformShellCommand
140 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_command) in SBPlatformShellCommand() function in SBPlatformShellCommand
143 SBPlatformShellCommand::SBPlatformShellCommand( in SBPlatformShellCommand() function in SBPlatformShellCommand
144 const SBPlatformShellCommand &rhs) in SBPlatformShellCommand()
149 SBPlatformShellCommand::~SBPlatformShellCommand() { delete m_opaque_ptr; } in ~SBPlatformShellCommand()
151 void SBPlatformShellCommand::Clear() { in Clear()
157 const char *SBPlatformShellCommand::GetCommand() { in GetCommand()
163 void SBPlatformShellCommand::SetCommand(const char *shell_command) { in SetCommand()
170 const char *SBPlatformShellCommand::GetWorkingDirectory() { in GetWorkingDirectory()
176 void SBPlatformShellCommand::SetWorkingDirectory(const char *path) { in SetWorkingDirectory()
183 uint32_t SBPlatformShellCommand::GetTimeoutSeconds() { in GetTimeoutSeconds()
189 void SBPlatformShellCommand::SetTimeoutSeconds(uint32_t sec) { in SetTimeoutSeconds()
196 int SBPlatformShellCommand::GetSignal() { return m_opaque_ptr->m_signo; } in GetSignal()
198 int SBPlatformShellCommand::GetStatus() { return m_opaque_ptr->m_status; } in GetStatus()
200 const char *SBPlatformShellCommand::GetOutput() { in GetOutput()
397 SBError SBPlatform::Run(SBPlatformShellCommand &shell_command) { in Run()