Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp55 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()
64 if (!shell_command.empty()) in PlatformShellCommand()
65 m_command = shell_command.str(); in PlatformShellCommand()
168 const char *shell_command) 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()
173 SBPlatformShellCommand::SBPlatformShellCommand(const char *shell_command) in SBPlatformShellCommand() argument
[all …]
/freebsd-src/contrib/llvm-project/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp255 StreamString shell_command; in ConvertArgumentsForLaunchingInShell() local
284 shell_command.PutCString(new_path); in ConvertArgumentsForLaunchingInShell()
289 shell_command.PutCString("exec"); in ConvertArgumentsForLaunchingInShell()
299 shell_command.Printf(" /usr/bin/arch -arch %s", in ConvertArgumentsForLaunchingInShell()
318 shell_command.Printf("%s", argv[0]); in ConvertArgumentsForLaunchingInShell()
327 shell_command.PutCString(" "); in ConvertArgumentsForLaunchingInShell()
328 shell_command.PutCString(safe_arg); in ConvertArgumentsForLaunchingInShell()
331 shell_arguments.AppendArgument(shell_command.GetString()); in ConvertArgumentsForLaunchingInShell()
/freebsd-src/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);