Home
last modified time | relevance | path

Searched refs:shell_interpreter (Results 1 – 1 of 1) sorted by relevance

/src/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp54 PlatformShellCommand(llvm::StringRef shell_interpreter, in PlatformShellCommand()
56 if (!shell_interpreter.empty()) in PlatformShellCommand()
57 m_shell = shell_interpreter.str(); in PlatformShellCommand()
167 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_interpreter, in SBPlatformShellCommand() argument
169 : m_opaque_ptr(new PlatformShellCommand(shell_interpreter, shell_command)) { in SBPlatformShellCommand()
170 LLDB_INSTRUMENT_VA(this, shell_interpreter, shell_command); in SBPlatformShellCommand()
213 void SBPlatformShellCommand::SetShell(const char *shell_interpreter) { in SetShell() argument
214 LLDB_INSTRUMENT_VA(this, shell_interpreter); in SetShell()
216 if (shell_interpreter && shell_interpreter[0]) in SetShell()
217 m_opaque_ptr->m_shell = shell_interpreter; in SetShell()