Lines Matching refs:shell_command
55 PlatformShellCommand(const char *shell_command = NULL) in PlatformShellCommand()
57 if (shell_command && shell_command[0]) in PlatformShellCommand()
58 m_command = shell_command; in PlatformShellCommand()
140 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_command) in SBPlatformShellCommand() argument
141 : m_opaque_ptr(new PlatformShellCommand(shell_command)) {} in SBPlatformShellCommand()
163 void SBPlatformShellCommand::SetCommand(const char *shell_command) { in SetCommand() argument
164 if (shell_command && shell_command[0]) in SetCommand()
165 m_opaque_ptr->m_command = shell_command; in SetCommand()
397 SBError SBPlatform::Run(SBPlatformShellCommand &shell_command) { in Run() argument
399 const char *command = shell_command.GetCommand(); in Run()
403 const char *working_dir = shell_command.GetWorkingDirectory(); in Run()
407 shell_command.SetWorkingDirectory(working_dir); in Run()
410 &shell_command.m_opaque_ptr->m_status, in Run()
411 &shell_command.m_opaque_ptr->m_signo, in Run()
412 &shell_command.m_opaque_ptr->m_output, in Run()
413 shell_command.m_opaque_ptr->m_timeout); in Run()