Lines Matching defs:shell_interpreter
54 PlatformShellCommand(llvm::StringRef shell_interpreter,
56 if (!shell_interpreter.empty())
57 m_shell = shell_interpreter.str();
167 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_interpreter,
169 : m_opaque_ptr(new PlatformShellCommand(shell_interpreter, shell_command)) {
170 LLDB_INSTRUMENT_VA(this, shell_interpreter, shell_command);
213 void SBPlatformShellCommand::SetShell(const char *shell_interpreter) {
214 LLDB_INSTRUMENT_VA(this, shell_interpreter);
216 if (shell_interpreter && shell_interpreter[0])
217 m_opaque_ptr->m_shell = shell_interpreter;