Searched refs:shell_command (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/contrib/gdb/gdb/ |
| H A D | fork-child.c | 130 char *shell_command; in fork_inferior() local 176 shell_command[0] = '\0'; in fork_inferior() 199 strcat (shell_command, "exec "); in fork_inferior() 237 strcat (shell_command, "'"); in fork_inferior() 241 strcat (shell_command, "'\\''"); in fork_inferior() 243 strcat (shell_command, "\\!"); in fork_inferior() 245 strncat (shell_command, p, 1); in fork_inferior() 247 strcat (shell_command, "'"); in fork_inferior() 250 strcat (shell_command, exec_file); in fork_inferior() 252 strcat (shell_command, " "); in fork_inferior() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBPlatform.cpp | 55 PlatformShellCommand(const char *shell_command = NULL) in PlatformShellCommand() 57 if (shell_command && shell_command[0]) in PlatformShellCommand() 58 m_command = shell_command; in PlatformShellCommand() 141 : m_opaque_ptr(new PlatformShellCommand(shell_command)) {} in SBPlatformShellCommand() 163 void SBPlatformShellCommand::SetCommand(const char *shell_command) { in SetCommand() argument 164 if (shell_command && shell_command[0]) in SetCommand() 165 m_opaque_ptr->m_command = shell_command; in SetCommand() 397 SBError SBPlatform::Run(SBPlatformShellCommand &shell_command) { in Run() argument 399 const char *command = shell_command.GetCommand(); in Run() 403 const char *working_dir = shell_command.GetWorkingDirectory(); in Run() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | ProcessLaunchInfo.cpp | 264 StreamString shell_command; in ConvertArgumentsForLaunchingInShell() local 293 shell_command.PutCString(new_path); in ConvertArgumentsForLaunchingInShell() 298 shell_command.PutCString("exec"); in ConvertArgumentsForLaunchingInShell() 308 shell_command.Printf(" /usr/bin/arch -arch %s", in ConvertArgumentsForLaunchingInShell() 327 shell_command.Printf("%s", argv[0]); in ConvertArgumentsForLaunchingInShell() 334 shell_command.Printf(" %s", arg); in ConvertArgumentsForLaunchingInShell() 337 shell_arguments.AppendArgument(shell_command.GetString()); in ConvertArgumentsForLaunchingInShell()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/ |
| H A D | SBPlatform.h | 55 SBPlatformShellCommand(const char *shell_command); 65 void SetCommand(const char *shell_command); 134 SBError Run(SBPlatformShellCommand &shell_command);
|