Searched refs:shell_command (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp55 llvm::StringRef shell_command) {
59 if (!m_shell.empty() && !shell_command.empty())
60 m_command = shell_command.str();
63 PlatformShellCommand(llvm::StringRef shell_command = llvm::StringRef()) {
64 if (!shell_command.empty())
65 m_command = shell_command.str();
168 const char *shell_command)
169 : m_opaque_ptr(new PlatformShellCommand(shell_interpreter, shell_command)) {
170 LLDB_INSTRUMENT_VA(this, shell_interpreter, shell_command);
173 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_command) argument
54 PlatformShellCommand(llvm::StringRef shell_interpreter, llvm::StringRef shell_command) argument
167 SBPlatformShellCommand(const char *shell_interpreter, const char *shell_command) argument
230 SetCommand(const char *shell_command) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/API/
H A DSBPlatform.h58 SBPlatformShellCommand(const char *shell, const char *shell_command);
59 SBPlatformShellCommand(const char *shell_command);
75 void SetCommand(const char *shell_command);
152 SBError Run(SBPlatformShellCommand &shell_command);
/freebsd-current/contrib/llvm-project/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp255 StreamString shell_command; local
284 shell_command.PutCString(new_path);
289 shell_command.PutCString("exec");
299 shell_command.Printf(" /usr/bin/arch -arch %s",
318 shell_command.Printf("%s", argv[0]);
327 shell_command.PutCString(" ");
328 shell_command.PutCString(safe_arg);
331 shell_arguments.AppendArgument(shell_command.GetString());

Completed in 64 milliseconds