Lines Matching refs:shell_command

54                        llvm::StringRef shell_command)  in PlatformShellCommand()
59 if (!m_shell.empty() && !shell_command.empty()) in PlatformShellCommand()
60 m_command = shell_command.str(); in PlatformShellCommand()
63 PlatformShellCommand(llvm::StringRef shell_command = llvm::StringRef()) in PlatformShellCommand()
65 if (!shell_command.empty()) in PlatformShellCommand()
66 m_command = shell_command.str(); in PlatformShellCommand()
178 const char *shell_command) in SBPlatformShellCommand() argument
179 : m_opaque_ptr(new PlatformShellCommand(shell_interpreter, shell_command)) { in SBPlatformShellCommand()
181 shell_interpreter, shell_command); in SBPlatformShellCommand()
184 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_command) in SBPlatformShellCommand() argument
185 : m_opaque_ptr(new PlatformShellCommand(shell_command)) { in SBPlatformShellCommand()
187 shell_command); in SBPlatformShellCommand()
247 void SBPlatformShellCommand::SetCommand(const char *shell_command) { in SetCommand() argument
249 shell_command); in SetCommand()
251 if (shell_command && shell_command[0]) in SetCommand()
252 m_opaque_ptr->m_command = shell_command; in SetCommand()
580 SBError SBPlatform::Run(SBPlatformShellCommand &shell_command) { in Run() argument
582 (lldb::SBPlatformShellCommand &), shell_command); in Run()
585 const char *command = shell_command.GetCommand(); in Run()
589 const char *working_dir = shell_command.GetWorkingDirectory(); in Run()
593 shell_command.SetWorkingDirectory(working_dir); in Run()
596 shell_command.m_opaque_ptr->m_shell, command, FileSpec(working_dir), in Run()
597 &shell_command.m_opaque_ptr->m_status, in Run()
598 &shell_command.m_opaque_ptr->m_signo, in Run()
599 &shell_command.m_opaque_ptr->m_output, in Run()
600 shell_command.m_opaque_ptr->m_timeout); in Run()