Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp53 PlatformShellCommand(llvm::StringRef shell_interpreter, in PlatformShellCommand()
55 if (!shell_interpreter.empty()) in PlatformShellCommand()
56 m_shell = shell_interpreter.str(); in PlatformShellCommand()
166 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_interpreter, in SBPlatformShellCommand() argument
168 : m_opaque_ptr(new PlatformShellCommand(shell_interpreter, shell_command)) { in SBPlatformShellCommand()
169 LLDB_INSTRUMENT_VA(this, shell_interpreter, shell_command); in SBPlatformShellCommand()
212 void SBPlatformShellCommand::SetShell(const char *shell_interpreter) { in SetShell() argument
213 LLDB_INSTRUMENT_VA(this, shell_interpreter); in SetShell()
215 if (shell_interpreter && shell_interpreter[0]) in SetShell()
216 m_opaque_ptr->m_shell = shell_interpreter; in SetShell()