Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/API/
H A DSBPlatform.cpp51 llvm::StringRef shell_command) { in PlatformShellCommand()
55 if (!m_shell.empty() && !shell_command.empty()) in PlatformShellCommand()
56 m_command = shell_command.str(); in PlatformShellCommand()
60 if (!shell_command.empty()) in PlatformShellCommand()
61 m_command = shell_command.str(); in PlatformShellCommand()
171 LLDB_INSTRUMENT_VA(this, shell_command); in SBPlatformShellCommand()
227 LLDB_INSTRUMENT_VA(this, shell_command); in SetCommand()
229 if (shell_command && shell_command[0]) in SetCommand()
230 m_opaque_ptr->m_command = shell_command; in SetCommand()
543 LLDB_INSTRUMENT_VA(this, shell_command); in Run()
[all …]
/llvm-project-15.0.7/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp259 StreamString shell_command; in ConvertArgumentsForLaunchingInShell() local
288 shell_command.PutCString(new_path); in ConvertArgumentsForLaunchingInShell()
293 shell_command.PutCString("exec"); in ConvertArgumentsForLaunchingInShell()
303 shell_command.Printf(" /usr/bin/arch -arch %s", in ConvertArgumentsForLaunchingInShell()
322 shell_command.Printf("%s", argv[0]); in ConvertArgumentsForLaunchingInShell()
329 shell_command.PutCString(" "); in ConvertArgumentsForLaunchingInShell()
330 shell_command.PutCString(safe_arg); in ConvertArgumentsForLaunchingInShell()
333 shell_arguments.AppendArgument(shell_command.GetString()); in ConvertArgumentsForLaunchingInShell()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBPlatform.i54 SBPlatformShellCommand (const char *shell, const char *shell_command);
55 SBPlatformShellCommand (const char *shell_command);
74 SetCommand(const char *shell_command);
193 Run (lldb::SBPlatformShellCommand &shell_command);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBPlatform.h54 SBPlatformShellCommand(const char *shell, const char *shell_command);
55 SBPlatformShellCommand(const char *shell_command);
71 void SetCommand(const char *shell_command);
148 SBError Run(SBPlatformShellCommand &shell_command);
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbtest.py1631 shell_command = lldb.SBPlatformShellCommand(cmd)
1632 err = platform.Run(shell_command)
1633 return (err, shell_command.GetStatus(), shell_command.GetOutput())